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

Side by Side Diff: LayoutTests/fast/dom/MicroData/007.html

Issue 14028014: Remove MicroData implementation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Also delete all the tests Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head>
6 <body>
7 <p>This tests that document.getItems NodeList must be in source tree order.</p>
8
9 <div itemscope itemtype="http://example.com/foo" id="one"></div>
10 <div itemscope itemtype="http://example.com/bar" id="two"></div>
11 <div itemscope itemtype="http://example.com/foo" id="three">
12 <div itemscope itemtype="data:text/plain," id="four"></div>
13 </div>
14 <div itemscope id="five"></div>
15 <div id="console"></div>
16 <script>
17 var nodeList = document.getItems();
18
19 shouldBe("nodeList[0].id", "'one'");
20 shouldBe("nodeList[1].id", "'two'");
21 shouldBe("nodeList[2].id", "'three'");
22 shouldBe("nodeList[3].id", "'four'");
23 </script>
24 <script src="../../js/resources/js-test-post.js"></script>
25 </body>
26 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/MicroData/006-expected.txt ('k') | LayoutTests/fast/dom/MicroData/007-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698