blob: 89556e3cc55ae100eb105111ad8b86ad26d17a26 [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");
client.send("");
}
</script>
</body>
</html>