uncaught-exception-following-subtest.html (287B)
1 <!DOCTYPE html> 2 <meta charset=utf-8> 3 <title>Uncaught exception following subtest</title> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script> 7 test(function() {}); 8 throw new Error("error outside any setup or test"); 9 </script>