| Index: LayoutTests/fast/loader/subresource-load-failed-crash.html
|
| diff --git a/LayoutTests/fast/loader/subresource-load-failed-crash.html b/LayoutTests/fast/loader/subresource-load-failed-crash.html
|
| deleted file mode 100644
|
| index 62792cb10cdcc7a8427ad2981a1c5f6566a454bf..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/loader/subresource-load-failed-crash.html
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -<html>
|
| -<body id='console'>
|
| -<script>
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| -}
|
| -
|
| -var xhr = new XMLHttpRequest;
|
| -function secondRequest()
|
| -{
|
| - xhr.onreadystatechange = function()
|
| - {
|
| - if (xhr.readyState == xhr.DONE) {
|
| - document.getElementById('console').appendChild(document.createTextNode("PASS"));
|
| - testRunner.notifyDone();
|
| - }
|
| - }
|
| - xhr.open("GET", "", true);
|
| - xhr.send();
|
| -}
|
| -window.addEventListener("DOMSubtreeModified", secondRequest, true);
|
| -
|
| -document.head.appendChild(document.createTextNode('X'));
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|