mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 06:08:24 +02:00
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
48 lines
1.2 KiB
HTML
48 lines
1.2 KiB
HTML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
Tests of DOM Worker Threads
|
|
-->
|
|
<head>
|
|
<title>Test for DOM Worker Threads</title>
|
|
<script src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
var worker = new Worker("timeoutTracing_worker.js");
|
|
|
|
worker.onmessage = function(event) {
|
|
// begin
|
|
worker.onmessage = null;
|
|
|
|
// 1 second should be enough to crash.
|
|
window.setTimeout(function(event) {
|
|
ok(true, "Didn't crash!");
|
|
SimpleTest.finish();
|
|
}, 1000);
|
|
|
|
var os = SpecialPowers.Cc["@mozilla.org/observer-service;1"]
|
|
.getService(SpecialPowers.Ci.nsIObserverService);
|
|
os.notifyObservers(null, "memory-pressure", "heap-minimize");
|
|
}
|
|
|
|
worker.onerror = function(event) {
|
|
ok(false, "I was expecting a crash, not an error");
|
|
SimpleTest.finish();
|
|
};
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.requestFlakyTimeout("untriaged");
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|