| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
| "http://www.w3.org/TR/html4/strict.dtd"> |
| <html lang="en"> |
| <head> |
| </head> |
| <body> |
| <p>FAILED - script did not run.</p> |
| <script> |
| var p = document.getElementsByTagName('p')[0]; |
| function test(client) |
| { |
| client.onreadystatechange = function() { |
| if (client.readyState == 4) { |
| p.firstChild.data = client.responseText; |
| if (window.testRunner) |
| testRunner.notifyDone(); |
| } |
| } |
| client.open("GET", "test-uri-resolution.txt"); |
| parent.send(client); |
| } |
| </script> |
| </body> |
| </html> |