4 https://bugzilla.mozilla.org/show_bug.cgi?id=731471
8 <title>Test for Bug
731471</title>
9 <script src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css"/>
12 <body onload=
"setTimeout(boom, 0);">
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=731471">Mozilla Bug
731471</a>
15 <div id=
"content" style=
"display: none">
19 <script type=
"application/javascript">
21 /** Test for Bug
731471. This is effectively a crashtest, but it uses window.open, which
22 doesn't work in the crashtest harness. **/
23 SimpleTest.waitForExplicitFinish();
24 SimpleTest.requestFlakyTimeout(
"untriaged");
27 w = window.open(
"file_bug731471.html");
28 setTimeout(function() {
29 w.document.write(
"2");
31 w.document.write(
"3 - Done");
34 ok(true,
"Didn't assert!");