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

Side by Side Diff: LayoutTests/fast/dom/MicroData/propertiescollection-crash.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 <div id="testDiv" itemscope><div itemprop="bar"> </div></div>
8 <script>
9 description("This test is successful if it does not crash.");
10 var testDiv = document.getElementById("testDiv");
11
12 shouldBeTrue("testDiv.properties['bar'] == '[object PropertyNodeList]'");
13 shouldBe("testDiv.properties['bar'].length", "1");
14 </script>
15 <script src="../../js/resources/js-test-post.js"></script>
16 </body>
17 </html>
18
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698