blob: 919e8ac90f30ec30509c835c4c987d12463b8612 [file] [log] [blame]
<!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 client()
{
var client = new XMLHttpRequest();
client.onreadystatechange = function() {
if (client.readyState == 4) {
p.firstChild.data = client.responseText;
if (window.testRunner)
testRunner.notifyDone();
}
}
client.open("GET", "test-uri-resolution.txt");
return client;
}
</script>
</body>
</html>