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

Side by Side Diff: LayoutTests/fast/dom/MicroData/004.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 test ensures that document.getItems must be case sensitive.</p>
8 <div itemscope itemtype="http://example.com/foo" id="one"></div>
9 <div itemscope itemtype="http://example.com/BAR" id="two"></div>
10 <div id="console"></div>
11
12 <script>
13 shouldBeTrue("document.getItems('http://example.com/Foo').length == 0");
14 shouldBeTrue("document.getItems('http://example.com/foo').length == 1");
15
16 shouldBeTrue("document.getItems('http://example.com/BAR').length == 1");
17 shouldBeTrue("document.getItems('http://example.com/bar').length == 0");
18 </script>
19 <script src="../../js/resources/js-test-post.js"></script>
20 </body>
21 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/MicroData/003-expected.txt ('k') | LayoutTests/fast/dom/MicroData/004-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698