4 https://bugzilla.mozilla.org/show_bug.cgi?id=424212
7 <title>Test for Bug
424212</title>
8 <script type=
"text/javascript" src=
"/MochiKit/MochiKit.js"></script>
9 <script type=
"text/javascript" src=
"/tests/SimpleTest/SimpleTest.js"></script>
10 <link rel=
"stylesheet" type=
"text/css" href=
"/tests/SimpleTest/test.css" />
13 <a target=
"_blank" href=
"https://bugzilla.mozilla.org/show_bug.cgi?id=424212">Mozilla Bug
424212</a>
15 <div id=
"content" style=
"display: none">
19 <script class=
"testbody" type=
"text/javascript">
21 /** Test for Bug
424212 **/
23 var xhr = new XMLHttpRequest();
24 xhr.open(
"GET", window.location.href +
"?" + Math.random());
26 xhr.onreadystatechange = function () {
28 is(xhr.status,
0,
"Unexpected status");
31 is(fired, true,
"No onreadystatechange handling?");