1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/parser/htmlparser/tests/mochitest/html5lib_tree_construction/inbody01.dat Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,54 @@ 1.4 +#data 1.5 +<button>1</foo> 1.6 +#errors 1.7 +(1,8): expected-doctype-but-got-start-tag 1.8 +(1,15): unexpected-end-tag 1.9 +(1,15): expected-closing-tag-but-got-eof 1.10 +#document 1.11 +| <html> 1.12 +| <head> 1.13 +| <body> 1.14 +| <button> 1.15 +| "1" 1.16 + 1.17 +#data 1.18 +<foo>1<p>2</foo> 1.19 +#errors 1.20 +(1,5): expected-doctype-but-got-start-tag 1.21 +(1,16): unexpected-end-tag 1.22 +(1,16): expected-closing-tag-but-got-eof 1.23 +#document 1.24 +| <html> 1.25 +| <head> 1.26 +| <body> 1.27 +| <foo> 1.28 +| "1" 1.29 +| <p> 1.30 +| "2" 1.31 + 1.32 +#data 1.33 +<dd>1</foo> 1.34 +#errors 1.35 +(1,4): expected-doctype-but-got-start-tag 1.36 +(1,11): unexpected-end-tag 1.37 +#document 1.38 +| <html> 1.39 +| <head> 1.40 +| <body> 1.41 +| <dd> 1.42 +| "1" 1.43 + 1.44 +#data 1.45 +<foo>1<dd>2</foo> 1.46 +#errors 1.47 +(1,5): expected-doctype-but-got-start-tag 1.48 +(1,17): unexpected-end-tag 1.49 +(1,17): expected-closing-tag-but-got-eof 1.50 +#document 1.51 +| <html> 1.52 +| <head> 1.53 +| <body> 1.54 +| <foo> 1.55 +| "1" 1.56 +| <dd> 1.57 +| "2"