summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/webappapis/scripting/processing-model-2/compile-error-in-body-onerror.html
blob: 0b094e71c358fdb7dee9d24c699b999b6a5d91fc (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
28
<!doctype html>
<html>
 <head>
  <title>window.onerror - compile 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 = false;
    window.onerror = t.step_func(function(){
        ran = true;
    });
  </script>
 </head>
 <body onerror="{"><!-- sets the event handler to null before compiling -->
  <div id=log></div>
  <script>
   for(;) {}
  </script>
  <script>
    t.step(function(){
        assert_false(ran, 'ran');
        t.done();
    });
  </script>
 </body>
</html>