blob: e846f3016661adda580fef5ff916ac7492d724e7 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
window.isOnErrorTest = true;
</script>
<script src="../../resources/js-test.js"></script>
<script src="resources/onerror-test.js"></script>
</head>
<body>
<!-- This script's body will be used to build a Blob URL to use as a Worker. -->
<script id="workerCode" type="text/plain">
setTimeout(function() {
throw new Error("Exception in setTimeout callback");
}, 0);
</script>
<script>
description("This tests that exceptions in setTimeout triggers 'worker.onerror'.");
checkErrorEventInHandler({
message: "Uncaught Error: Exception in setTimeout callback",
filename: "[blob: URL]",
lineno: 3,
colno: 19,
});
</script>
</body>
</html>