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

Side by Side 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, 10 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p>This tests accessing the first element in childNodes after accessing the seco nd element by its id.
5 WebKit should retrieve each element correctly, and you should see 2 1 below:</p>
6 <span id="item"></span><span id="tests" style="display: none;">1<span id="item"> 2</span></span>
7 <script>
8
9 if (window.testRunner)
10 testRunner.dumpAsText();
11
12 var tests = document.querySelector('#tests');
13 document.writeln(tests.childNodes['item'].textContent);
14 document.writeln(tests.childNodes[0].textContent);
15
16 </script>
17 </body>
18 </html>
OLDNEW
« 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