summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/processing-model-2/runtime-error-in-body-onerror.html
blob: e0fd1dcbd54803778ef05a019d86f10756320504 (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
<!doctype html>
<html>
 <head>
  <title>runtime error in &lt;body onerror></title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
  <script>
    setup({allow_uncaught_exception:true});
    var t = async_test();
    var ran = 0;
  </script>
 </head>
 <body onerror="ran++; undefined_variable_in_onerror;">
  <div id=log></div>
  <script>
    undefined_variable;
  </script>
  <script>
    t.step(function(){
        assert_equals(ran, 1, 'ran');
        t.done();
    });
  </script>
 </body>
</html>