Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(596)

Unified Diff: LayoutTests/fast/dom/childnode-item-after-itemname.html

Issue 144313014: Remove NodeList's anonymous named getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Another clang build fix Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/dom/childnode-item-after-itemname-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | LayoutTests/fast/dom/childnode-item-after-itemname-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698