mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
0d460e3432
This is split from the previous changeset since if we include dom/ the file size is too large for phabricator to handle. This is an autogenerated commit to handle scripts loading mochitest harness files, in the simple case where the script src is on the same line as the tag. This was generated with https://bug1544322.bmoattachments.org/attachment.cgi?id=9058170 using the `--part 2` argument. Differential Revision: https://phabricator.services.mozilla.com/D27457 --HG-- extra : moz-landing-system : lando
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script src="/tests/SimpleTest/SimpleTest.js">
|
|
</script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript">
|
|
const filename = "http://mochi.test:8888/tests/dom/workers/test/" +
|
|
"recursiveOnerror_worker.js";
|
|
const errors = [
|
|
{ message: "Error: 2", lineno: 6 },
|
|
{ message: "Error: 1", lineno: 10 }
|
|
]
|
|
|
|
var errorCount = 0;
|
|
|
|
var worker = new Worker("recursiveOnerror_worker.js");
|
|
worker.postMessage("go");
|
|
|
|
worker.onerror = function(event) {
|
|
event.preventDefault();
|
|
|
|
ok(errorCount < errors.length, "Correct number of error events");
|
|
const error = errors[errorCount++];
|
|
|
|
is(event.message, error.message, "Correct message");
|
|
is(event.filename, filename, "Correct filename");
|
|
is(event.lineno, error.lineno, "Correct lineno");
|
|
|
|
if (errorCount == errors.length) {
|
|
SimpleTest.finish();
|
|
}
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
</script>
|
|
</body>
|
|
</html>
|