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

Side by Side Diff: LayoutTests/fast/dom/MicroData/properties-collection-must-be-correct-expected.txt

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 This test ensures that properties collection of a Microdata item must be correct .
2
3 Created element of type: div
4 Set attribute: itemscope, value: itemscope
5
6 properties.length must be the total number of properties.
7 PASS propertiesCollection.length == '4' is true
8
9 properties.item(index) and properties[index] must give each property in tree ord er'
10 PASS propertiesCollection.item(0) == childNodes[0] is true
11 PASS propertiesCollection.item(1) == childNodes[1] is true
12 PASS propertiesCollection.item(2) == childNodes[1].childNodes[0] is true
13 PASS propertiesCollection.item(3) == childNodes[2] is true
14
15 PASS propertiesCollection[0] == childNodes[0] is true
16 PASS propertiesCollection[1] == childNodes[1] is true
17 PASS propertiesCollection[2] == childNodes[1].childNodes[0] is true
18 PASS propertiesCollection[3] == childNodes[2] is true
19 properties[index] and properties.item(index) must return undefined for out of ra nge index.
20 PASS propertiesCollection[4] == undefined is true
21 PASS propertiesCollection.item(4) == undefined is true
22 PASS successfullyParsed is true
23
24 TEST COMPLETE
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698