blob: 21bb3350ed2ee44857eb1a190824a9c6b64fe4c3 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
if (window.testRunner)
testRunner.dumpAsText();
var req = new XMLHttpRequest();
req.open("GET", "resources/endlessxml.php");
req.onerror = function () {
console.log("FAIL: Expected 'abort', got 'error'.");
};
req.onabort = function () {
console.log("PASS: Expected 'abort', got 'abort'.");
};
req.send(null);
if (window.testRunner)
testRunner.queueLoad("resources/navigation-target.html");
</script>
</head>
<body>
<p>This test requires TestRunner. To execute it manually, open the console, and navigate to <a href="resources/navigation-target.html">resources/navigation-target.html</a>. You should see a "PASS" message in the console.</p>
</body>
</html>