mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Backed out changeset e12c6f7d6676 (bug 885107) on suspicion of causing bug 894952
This commit is contained in:
parent
496b5f94d7
commit
7f830b443a
@ -5,6 +5,11 @@
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
<div id=log></div>
|
||||
<script>
|
||||
if (navigator.platform.startsWith("Linux")) {
|
||||
SimpleTest.expectAssertions(0, 2);
|
||||
} else {
|
||||
SimpleTest.expectAssertions(2);
|
||||
}
|
||||
test(function() {
|
||||
new Worker("data:text/javascript,new XMLHttpRequest(42)");
|
||||
}, "Should not crash")
|
||||
|
@ -12,6 +12,12 @@
|
||||
<div id="log"></div>
|
||||
<script>
|
||||
|
||||
if (navigator.platform.startsWith("Win")) {
|
||||
SimpleTest.expectAssertions(0, 2);
|
||||
} else {
|
||||
SimpleTest.expectAssertions(2);
|
||||
}
|
||||
|
||||
setup({explicit_done: true});
|
||||
runTest();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user