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

Side by Side Diff: LayoutTests/fast/dom/MicroData/itemvalue-returns-null-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 itemValue must be null if the element does not have an itemprop attribute
2
3 Created element of type: meta
4 Set attribute: content, value: test
5 PASS createElement('meta', {content: 'test'}).itemValue == null is true
6
7 Created element of type: audio
8 Set attribute: src, value: test
9 PASS createElement('audio', {src: 'test'}).itemValue == null is true
10
11 Created element of type: embed
12 Set attribute: src, value: test
13 PASS createElement('embed', {src: 'test'}).itemValue == null is true
14
15 Created element of type: iframe
16 Set attribute: src, value: test
17 PASS createElement('iframe', {src: 'test'}).itemValue == null is true
18
19 Created element of type: img
20 Set attribute: src, value: test
21 PASS createElement('img', {src: 'test'}).itemValue == null is true
22
23 Created element of type: source
24 Set attribute: src, value: test
25 PASS createElement('source', {src: 'test'}).itemValue == null is true
26
27 Created element of type: track
28 Set attribute: src, value: test
29 PASS createElement('track', {src: 'test'}).itemValue == null is true
30
31 Created element of type: video
32 Set attribute: src, value: test
33 PASS createElement('video', {src: 'test'}).itemValue == null is true
34
35 Created element of type: a
36 Set attribute: href, value: test
37 PASS createElement('a', {href: 'test'}).itemValue == null is true
38
39 Created element of type: area
40 Set attribute: href, value: test
41 PASS createElement('area', {href: 'test'}).itemValue == null is true
42
43 Created element of type: link
44 Set attribute: href, value: test
45 PASS createElement('link', {href: 'test'}).itemValue == null is true
46
47 Created element of type: object
48 Set attribute: data, value: test
49 PASS createElement('object', {data: 'test'}).itemValue == null is true
50
51 Created element of type: time
52 PASS createElement('time', {}).itemValue == null is true
53
54 Created element of type: time
55 Set attribute: datetime, value: test
56 PASS createElement('time', {datetime: 'test'}).itemValue == null is true
57
58 Created element of type: div
59 PASS createElement('div', {}, 'test').itemValue == null is true
60
61 Created element of type: madeuponthespot
62 PASS createElement('madeuponthespot', {}, 'test').itemValue == null is true
63 PASS successfullyParsed is true
64
65 TEST COMPLETE
66
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698