5 // Attempts a hash navigation while "about:blank" is being committed
6 // to the frame. The hash navigation should be ignored.
8 var VERY_SLOW_URL
= "../xmlhttprequest/resources/endless.php?"
10 var xhr
= new XMLHttpRequest();
11 xhr
.open("GET", VERY_SLOW_URL
, true);
12 xhr
.onabort = function() {
13 window
.location
.hash
= "hashnav";
16 window
.location
= "about:blank";
21 <body onload=
"doIt()">