blob: b2cb36b97293f4daf9d7c4c9e79410ff77802c69 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>window.onerror - addEventListener</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;
// spec doesn't say to fire an event so this should do nothing
window.addEventListener('error', t.step_func(function(e){
ran = true;
}), false);
</script>
<script>
undefined_variable;
</script>
<script>
for (;) {}
</script>
<script>
t.step(function(){
assert_false(ran, 'ran');
t.done();
});
</script>
</body>
</html>