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

Side by Side Diff: LayoutTests/fast/dom/MicroData/itemid-attribute-test-001-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 Test for bug: https://bugs.webkit.org/show_bug.cgi?id=71510. Assertion failure i n Element::getURLAttribute() while retriving itemid of a Microdata item.
2
3 Created element of type: a
4 Set attribute: itemid, value: http://example.com/foo
5 Set attribute: href, value: http://www.webkit.org/
6 PASS createElement('a', {itemid: 'http://example.com/foo', href: 'http://www.web kit.org/'}).itemId == 'http://example.com/foo'; is true
7
8 Created element of type: audio
9 Set attribute: itemid, value: http://example.com/foo
10 Set attribute: src, value: test.mp3
11 PASS createElement('audio', {itemid: 'http://example.com/foo', src: 'test.mp3'}) .itemId == 'http://example.com/foo'; is true
12
13 Created element of type: base
14 Set attribute: itemid, value: http://example.com/foo
15 Set attribute: href, value: http://www.webkit.org/
16 PASS createElement('base', {itemid: 'http://example.com/foo', href: 'http://www. webkit.org/'}).itemId == 'http://example.com/foo'; is true
17
18 Created element of type: blockquote
19 Set attribute: itemid, value: http://example.com/foo
20 PASS createElement('blockquote', {itemid: 'http://example.com/foo'}).itemId == ' http://example.com/foo'; is true
21
22 Created element of type: body
23 Set attribute: itemid, value: http://example.com/foo
24 PASS createElement('body', {itemid: 'http://example.com/foo'}).itemId == 'http:/ /example.com/foo'; is true
25
26 Created element of type: button
27 Set attribute: itemid, value: http://example.com/foo
28 Set attribute: type, value: button
29 PASS createElement('button', {itemid: 'http://example.com/foo', type: 'button'}) .itemId == 'http://example.com/foo'; is true
30
31 Created element of type: del
32 Set attribute: itemid, value: http://example.com/foo
33 PASS createElement('del', {itemid: 'http://example.com/foo'}).itemId == 'http:// example.com/foo'; is true
34
35 Created element of type: div
36 Set attribute: itemid, value: http://example.com/foo
37 PASS createElement('div', {itemid: 'http://example.com/foo'}).itemId == 'http:// example.com/foo'; is true
38
39 Created element of type: embed
40 Set attribute: itemid, value: http://example.com/foo
41 Set attribute: src, value: test.swf
42 PASS createElement('embed', {itemid: 'http://example.com/foo', src: 'test.swf'}) .itemId == 'http://example.com/foo'; is true
43
44 Created element of type: form
45 Set attribute: itemid, value: http://example.com/foo
46 PASS createElement('form', {itemid: 'http://example.com/foo'}).itemId == 'http:/ /example.com/foo'; is true
47
48 Created element of type: frame
49 Set attribute: itemid, value: http://example.com/foo
50 Set attribute: src, value: test.html
51 PASS createElement('frame', {itemid: 'http://example.com/foo', src: 'test.html'} ).itemId == 'http://example.com/foo'; is true
52
53 Created element of type: html
54 Set attribute: itemid, value: http://example.com/foo
55 PASS createElement('html', {itemid: 'http://example.com/foo'}).itemId == 'http:/ /example.com/foo'; is true
56
57 Created element of type: iframe
58 Set attribute: itemid, value: http://example.com/foo
59 Set attribute: src, value: test.html
60 PASS createElement('iframe', {itemid: 'http://example.com/foo', src: 'test.html' }).itemId == 'http://example.com/foo'; is true
61
62 Created element of type: img
63 Set attribute: itemid, value: http://example.com/foo
64 Set attribute: src, value: image.png
65 PASS createElement('img', {itemid: 'http://example.com/foo', src: 'image.png'}). itemId == 'http://example.com/foo'; is true
66
67 Created element of type: input
68 Set attribute: itemid, value: http://example.com/foo
69 Set attribute: type, value: button
70 PASS createElement('input', {itemid: 'http://example.com/foo', type: 'button'}). itemId == 'http://example.com/foo'; is true
71
72 Created element of type: ins
73 Set attribute: itemid, value: http://example.com/foo
74 PASS createElement('ins', {itemid: 'http://example.com/foo'}).itemId == 'http:// example.com/foo'; is true
75
76 Created element of type: link
77 Set attribute: itemid, value: http://example.com/foo
78 Set attribute: type, value: text/css
79 Set attribute: href, value: test.css
80 PASS createElement('link', {itemid: 'http://example.com/foo', type: 'text/css', href: 'test.css'}).itemId == 'http://example.com/foo'; is true
81
82 Created element of type: object
83 Set attribute: itemid, value: http://example.com/foo
84 Set attribute: data, value: test.swf
85 PASS createElement('object', {itemid: 'http://example.com/foo', data: 'test.swf' }).itemId == 'http://example.com/foo'; is true
86
87 Created element of type: param
88 Set attribute: itemid, value: http://example.com/foo
89 Set attribute: name, value: my_param
90 PASS createElement('param', {itemid: 'http://example.com/foo', name: 'my_param'} ).itemId == 'http://example.com/foo'; is true
91
92 Created element of type: q
93 Set attribute: itemid, value: http://example.com/foo
94 PASS createElement('q', {itemid: 'http://example.com/foo'}).itemId == 'http://ex ample.com/foo'; is true
95
96 Created element of type: source
97 Set attribute: itemid, value: http://example.com/foo
98 Set attribute: type, value: audio/mpeg
99 Set attribute: src, value: test.mp3
100 PASS createElement('source', {itemid: 'http://example.com/foo', type: 'audio/mpe g', src: 'test.mp3'}).itemId == 'http://example.com/foo'; is true
101
102 Created element of type: table
103 Set attribute: itemid, value: http://example.com/foo
104 PASS createElement('table', {itemid: 'http://example.com/foo'}).itemId == 'http: //example.com/foo'; is true
105
106 Created element of type: td
107 Set attribute: itemid, value: http://example.com/foo
108 PASS createElement('td', {itemid: 'http://example.com/foo'}).itemId == 'http://e xample.com/foo'; is true
109
110 Created element of type: track
111 Set attribute: itemid, value: http://example.com/foo
112 Set attribute: type, value: audio/mpeg
113 Set attribute: src, value: test.vtt
114 PASS createElement('track', {itemid: 'http://example.com/foo', type: 'audio/mpeg ', src: 'test.vtt'}).itemId == 'http://example.com/foo'; is true
115
116 Created element of type: video
117 Set attribute: itemid, value: http://example.com/foo
118 Set attribute: src, value: test.mp4
119 PASS createElement('video', {itemid: 'http://example.com/foo', src: 'test.mp4'}) .itemId == 'http://example.com/foo'; is true
120
121 PASS successfullyParsed is true
122
123 TEST COMPLETE
124
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698