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

Side by Side Diff: LayoutTests/fast/dom/MicroData/itemprop-for-an-element-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 that the itemProp should be correct for an element that has itemProp a ttribute.
2
3 Created element of type: div
4 Set attribute: itemprop, value: foo bar FOO FOo
5 PASS element.itemProp.length == 4 is true
6 PASS element.itemProp.toString() == 'foo bar FOO FOo' is true
7 PASS element.itemProp.item(0) == 'foo' is true
8 PASS element.itemProp.item(1) == 'bar' is true
9 PASS element.itemProp[0] == 'foo' is true
10 PASS element.itemProp[1] == 'bar' is true
11 PASS element.itemProp.contains('bar') is true
12
13 itemProp should return case-sensitive strings.
14 PASS element.itemProp.item(2) == 'FOO' is true
15 PASS element.itemProp[2] == 'FOO' is true
16 PASS element.itemProp.item(3) == 'FOo' is true
17 FAIL element.itemProp[2] == 'FOo' should be true. Was false.
18
19 itemProp should not contain an undefined token.
20 PASS element.itemProp.contains('test') is false
21
22 itemProp.length should be 0 if element doesn't have any tokens.
23 Created element of type: div
24 Set attribute: itemprop, value:
25 PASS element1.itemProp.length == 0 is true
26 PASS successfullyParsed is true
27
28 TEST COMPLETE
29
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698