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

Side by Side Diff: LayoutTests/fast/dom/MicroData/itemid-attribute-test-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 itemid attribute simple test.
2
3 Created element of type: div
4 Set attribute: itemid, value: http://example.com/foo
5
6 The itemId attribute must be defined.
7 PASS element.itemId is defined.
8 PASS element.itemId is 'http://example.com/foo'
9
10 itemId attribute must be case-senaitive.
11 Created element of type: div
12 Set attribute: itemid, value: http://example.com/FOO
13 PASS createElement('div', {itemid: 'http://example.com/FOO'}).itemId == 'http:// example.com/FOO'; is true
14
15 itemId must strip leading and trailing whitespace.
16 Created element of type: div
17 Set attribute: itemid, value: http://example.com/foo
18 PASS createElement('div', {itemid: ' http://example.com/foo '}).itemId == 'http: //example.com/foo'; is true
19
20 itemId must strip leading whitespace.
21 Created element of type: div
22 Set attribute: itemid, value: http://example.com/foo
23 PASS createElement('div', {itemid: ' http://example.com/foo'}).itemId == 'http: //example.com/foo'; is true
24
25 itemId must strip trailing whitespace.
26 Created element of type: div
27 Set attribute: itemid, value: http://example.com/foo
28 PASS createElement('div', {itemid: 'http://example.com/foo '}).itemId == 'http: //example.com/foo'; is true
29
30 itemId must be read/write.
31 PASS element.itemId = 'http://example.com/bar'; element.itemId == 'http://exampl e.com/bar' is true
32 PASS successfullyParsed is true
33
34 TEST COMPLETE
35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698