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

Side by Side Diff: LayoutTests/html5lib/resources/tests19.dat

Issue 482373002: Catch up ruby and its tag omission rule changes in HTML5 CR Feb 2014 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed TODO. Used HTMLUnknownElement. Created 6 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
1 #data 1 #data
2 <!doctype html><math><mn DefinitionUrl="foo"> 2 <!doctype html><math><mn DefinitionUrl="foo">
3 #errors 3 #errors
4 #document 4 #document
5 | <!DOCTYPE html> 5 | <!DOCTYPE html>
6 | <html> 6 | <html>
7 | <head> 7 | <head>
8 | <body> 8 | <body>
9 | <math math> 9 | <math math>
10 | <math mn> 10 | <math mn>
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 | <!DOCTYPE html> 220 | <!DOCTYPE html>
221 | <html> 221 | <html>
222 | <head> 222 | <head>
223 | <body> 223 | <body>
224 | <ruby> 224 | <ruby>
225 | <div> 225 | <div>
226 | <p> 226 | <p>
227 | <rt> 227 | <rt>
228 228
229 #data 229 #data
230 <html><ruby>a<rb>b<rt></ruby></html>
231 #errors
232 (1,6): expected-doctype-but-got-start-tag
233 #document
234 | <html>
235 | <head>
236 | <body>
237 | <ruby>
238 | "a"
239 | <rb>
240 | "b"
241 | <rt>
242
243 #data
244 <html><ruby>a<rp>b<rt></ruby></html>
245 #errors
246 (1,6): expected-doctype-but-got-start-tag
247 #document
248 | <html>
249 | <head>
250 | <body>
251 | <ruby>
252 | "a"
253 | <rp>
254 | "b"
255 | <rt>
256
257 #data
258 <html><ruby>a<rt>b<rt></ruby></html>
259 #errors
260 (1,6): expected-doctype-but-got-start-tag
261 #document
262 | <html>
263 | <head>
264 | <body>
265 | <ruby>
266 | "a"
267 | <rt>
268 | "b"
269 | <rt>
270
271 #data
272 <html><ruby>a<rtc>b<rt>c<rb>d</ruby></html>
273 #errors
274 (1,6): expected-doctype-but-got-start-tag
275 #document
276 | <html>
277 | <head>
278 | <body>
279 | <ruby>
280 | "a"
281 | <rtc>
282 | "b"
283 | <rt>
284 | "c"
285 | <rb>
286 | "d"
287
288 #data
230 <!doctype html><math/><foo> 289 <!doctype html><math/><foo>
231 #errors 290 #errors
232 #document 291 #document
233 | <!DOCTYPE html> 292 | <!DOCTYPE html>
234 | <html> 293 | <html>
235 | <head> 294 | <head>
236 | <body> 295 | <body>
237 | <math math> 296 | <math math>
238 | <foo> 297 | <foo>
239 298
(...skipping 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 | <head> 1287 | <head>
1229 | <body> 1288 | <body>
1230 | <div> 1289 | <div>
1231 | "a" 1290 | "a"
1232 | <a> 1291 | <a>
1233 | <a> 1292 | <a>
1234 | "b" 1293 | "b"
1235 | <p> 1294 | <p>
1236 | "c" 1295 | "c"
1237 | "d" 1296 | "d"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698