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

Side by Side Diff: LayoutTests/fast/dom/MicroData/itemprop-add-remove-tokens-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 tests that itemProp attribute must update correctly when token have been ad ded or removed.
2
3 Created element of type: div
4 itemProp.add must reflect correctly.
5 PASS element.itemProp.length == 2 is true
6 PASS element.itemProp.toString() == 'foo FOO' is true
7 PASS element.itemProp[0] is 'foo'
8 PASS element.itemProp[1] is 'FOO'
9
10 itemProp.add must not make any changes if an existing token is added.
11 PASS element.itemProp.length == 2 is true
12 PASS element.itemProp.toString() == 'foo FOO' is true
13
14 itemProp.remove must reflect correctly.
15 PASS element.itemProp.length == 1 is true
16 PASS element.itemProp.contains('foo') is false
17 PASS element.itemProp.toString() == 'FOO' is true
18
19 itemProp.remove must not make any changes if a non-existing token is removed.
20 PASS element.itemProp.length == 1 is true
21 PASS element.itemProp.contains('foo') is false
22 PASS element.itemProp.toString() == 'FOO' is true
23
24 itemProp.length must be 0 when all tokens are removed.
25 PASS element.itemProp.length == 0 is true
26 PASS element.itemProp.contains('foo') is false
27 PASS element.itemProp.contains('FOO') is false
28 PASS successfullyParsed is true
29
30 TEST COMPLETE
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698