Index: LayoutTests/fast/dom/childnode-item-after-itemname.html |
diff --git a/LayoutTests/fast/dom/childnode-item-after-itemname.html b/LayoutTests/fast/dom/childnode-item-after-itemname.html |
deleted file mode 100644 |
index b9c9c316581e972f1863d109a3b396e24a9334e2..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/childnode-item-after-itemname.html |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<body> |
-<p>This tests accessing the first element in childNodes after accessing the second element by its id. |
-WebKit should retrieve each element correctly, and you should see 2 1 below:</p> |
-<span id="item"></span><span id="tests" style="display: none;">1<span id="item">2</span></span> |
-<script> |
- |
-if (window.testRunner) |
- testRunner.dumpAsText(); |
- |
-var tests = document.querySelector('#tests'); |
-document.writeln(tests.childNodes['item'].textContent); |
-document.writeln(tests.childNodes[0].textContent); |
- |
-</script> |
-</body> |
-</html> |