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

Side by Side Diff: pkg/third_party/html5lib/test/data/tree-construction/tables01.dat

Issue 22375011: move html5lib code into dart svn repo (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: change location of html5lib to pkg/third_party/html5lib Created 7 years, 4 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 #data
2 <table><th>
3 #errors
4 #document
5 | <html>
6 | <head>
7 | <body>
8 | <table>
9 | <tbody>
10 | <tr>
11 | <th>
12
13 #data
14 <table><td>
15 #errors
16 #document
17 | <html>
18 | <head>
19 | <body>
20 | <table>
21 | <tbody>
22 | <tr>
23 | <td>
24
25 #data
26 <table><col foo='bar'>
27 #errors
28 #document
29 | <html>
30 | <head>
31 | <body>
32 | <table>
33 | <colgroup>
34 | <col>
35 | foo="bar"
36
37 #data
38 <table><colgroup></html>foo
39 #errors
40 #document
41 | <html>
42 | <head>
43 | <body>
44 | "foo"
45 | <table>
46 | <colgroup>
47
48 #data
49 <table></table><p>foo
50 #errors
51 #document
52 | <html>
53 | <head>
54 | <body>
55 | <table>
56 | <p>
57 | "foo"
58
59 #data
60 <table></body></caption></col></colgroup></html></tbody></td></tfoot></th></thea d></tr><td>
61 #errors
62 #document
63 | <html>
64 | <head>
65 | <body>
66 | <table>
67 | <tbody>
68 | <tr>
69 | <td>
70
71 #data
72 <table><select><option>3</select></table>
73 #errors
74 #document
75 | <html>
76 | <head>
77 | <body>
78 | <select>
79 | <option>
80 | "3"
81 | <table>
82
83 #data
84 <table><select><table></table></select></table>
85 #errors
86 #document
87 | <html>
88 | <head>
89 | <body>
90 | <select>
91 | <table>
92 | <table>
93
94 #data
95 <table><select></table>
96 #errors
97 #document
98 | <html>
99 | <head>
100 | <body>
101 | <select>
102 | <table>
103
104 #data
105 <table><select><option>A<tr><td>B</td></tr></table>
106 #errors
107 #document
108 | <html>
109 | <head>
110 | <body>
111 | <select>
112 | <option>
113 | "A"
114 | <table>
115 | <tbody>
116 | <tr>
117 | <td>
118 | "B"
119
120 #data
121 <table><td></body></caption></col></colgroup></html>foo
122 #errors
123 #document
124 | <html>
125 | <head>
126 | <body>
127 | <table>
128 | <tbody>
129 | <tr>
130 | <td>
131 | "foo"
132
133 #data
134 <table><td>A</table>B
135 #errors
136 #document
137 | <html>
138 | <head>
139 | <body>
140 | <table>
141 | <tbody>
142 | <tr>
143 | <td>
144 | "A"
145 | "B"
146
147 #data
148 <table><tr><caption>
149 #errors
150 #document
151 | <html>
152 | <head>
153 | <body>
154 | <table>
155 | <tbody>
156 | <tr>
157 | <caption>
158
159 #data
160 <table><tr></body></caption></col></colgroup></html></td></th><td>foo
161 #errors
162 #document
163 | <html>
164 | <head>
165 | <body>
166 | <table>
167 | <tbody>
168 | <tr>
169 | <td>
170 | "foo"
171
172 #data
173 <table><td><tr>
174 #errors
175 #document
176 | <html>
177 | <head>
178 | <body>
179 | <table>
180 | <tbody>
181 | <tr>
182 | <td>
183 | <tr>
184
185 #data
186 <table><td><button><td>
187 #errors
188 #document
189 | <html>
190 | <head>
191 | <body>
192 | <table>
193 | <tbody>
194 | <tr>
195 | <td>
196 | <button>
197 | <td>
198
199 #data
200 <table><tr><td><svg><desc><td>
201 #errors
202 #document
203 | <html>
204 | <head>
205 | <body>
206 | <table>
207 | <tbody>
208 | <tr>
209 | <td>
210 | <svg svg>
211 | <svg desc>
212 | <td>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698