4 <script src=
"../../resources/js-test.js"></script>
8 window
.jsTestIsAsync
= true;
9 description("This test should trigger 'window.onerror' inside the sandboxed iframe, and successfully handle the error.");
11 window
.onmessage = function (e
) {
13 shouldBeEqualToString("message", "Uncaught ReferenceError: hahaha_good_luck_finding_me is not defined");
17 <iframe sandbox=
"allow-scripts" srcdoc=
"
19 window.onerror = function (message) {
20 window.top.postMessage(message, '*');
22 hahaha_good_luck_finding_me(); // caught by window.onerror