summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/animation-frames/callback-exception.html
blob: 3867f0c41d54130d6314d74ebaec96c589f55b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html>
  <head>
    <title>requestAnimationFrame callback exception reported to error handler</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <link rel="help" href="https://w3c.github.io/web-performance/specs/RequestAnimationFrame/Overview.html#dom-windowanimationtiming-requestanimationframe"/>
  </head>
  <body>
    <div id="log"></div>
    <script>
      var custom_exception = 'requestAnimationFrameException';
      setup({allow_uncaught_exception : true});
      async_test(function (t) {
        addEventListener("error",function(e) {
          t.step(function() {
             assert_equals(e.error.message, custom_exception);
             t.done();
          })
        });
        window.requestAnimationFrame(function () {
          throw new Error(custom_exception);
        });
      }, "requestAnimationFrame callback exceptions are reported to error handler");
    </script>
  </body>
</html>