blob: 53812583280cca24459b34552b6c163bab77cb3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<p>This test checks for a NULL document crash that can happen when calling
XMLHttpRequest.open. If the test passes, you'll see a PASS message below.</p>
<hr>
<pre id="pre"></pre>
<iframe name="iframe" style="visibility:hidden" src="does-not-exist.bogus"></iframe> <!-- forces asynchronous load -->
<script>
<!--
function log(s)
{
document.getElementById("pre").appendChild(document.createTextNode(s));
}
function test()
{
var request = new XMLHttpRequest();
request.onreadystatechange = function(event) { if (event.target.readyState == 1) parent.pass(); };
request.open("GET", window.location);
}
function pass()
{
log("PASS: You didn't crash.");
if (window.testRunner)
testRunner.notifyDone();
}
function main()
{
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
// setTimeout forces execution in the context of the frame
frames[0].setTimeout(test, 0);
}
main();
-->
</script>
|