blob: c4028e650bf72b51d5fc3b594b16c253bdd59be6 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>window.onerror - compile error in cross-origin setInterval</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<div id=log></div>
<script>
setup({allow_uncaught_exception:true});
var t = async_test();
var ran = false;
var interval;
window.addEventListener('error', t.step_func(e => {
clearInterval(interval);
ran = true;
assert_equals(e.error.constructor, SyntaxError);
}));
var script = document.createElement('script');
script.src = location.href.replace('://', '://www1.').replace(/\/[^\/]+$/, '/support/syntax-error-in-setInterval.js');
document.body.appendChild(script);
</script>
</body>
</html>