|
1 #data |
|
2 <foo bar=qux/> |
|
3 #errors |
|
4 (1,14): expected-doctype-but-got-start-tag |
|
5 (1,14): expected-closing-tag-but-got-eof |
|
6 #document |
|
7 | <html> |
|
8 | <head> |
|
9 | <body> |
|
10 | <foo> |
|
11 | bar="qux/" |
|
12 |
|
13 #data |
|
14 <p id="status"><noscript><strong>A</strong></noscript><span>B</span></p> |
|
15 #errors |
|
16 (1,15): expected-doctype-but-got-start-tag |
|
17 #document |
|
18 | <html> |
|
19 | <head> |
|
20 | <body> |
|
21 | <p> |
|
22 | id="status" |
|
23 | <noscript> |
|
24 | "<strong>A</strong>" |
|
25 | <span> |
|
26 | "B" |
|
27 |
|
28 #data |
|
29 <div><sarcasm><div></div></sarcasm></div> |
|
30 #errors |
|
31 (1,5): expected-doctype-but-got-start-tag |
|
32 #document |
|
33 | <html> |
|
34 | <head> |
|
35 | <body> |
|
36 | <div> |
|
37 | <sarcasm> |
|
38 | <div> |
|
39 |
|
40 #data |
|
41 <html><body><img src="" border="0" alt="><div>A</div></body></html> |
|
42 #errors |
|
43 (1,6): expected-doctype-but-got-start-tag |
|
44 (1,67): eof-in-attribute-value-double-quote |
|
45 #document |
|
46 | <html> |
|
47 | <head> |
|
48 | <body> |
|
49 |
|
50 #data |
|
51 <table><td></tbody>A |
|
52 #errors |
|
53 (1,7): expected-doctype-but-got-start-tag |
|
54 (1,11): unexpected-cell-in-table-body |
|
55 (1,20): foster-parenting-character |
|
56 (1,20): eof-in-table |
|
57 #document |
|
58 | <html> |
|
59 | <head> |
|
60 | <body> |
|
61 | "A" |
|
62 | <table> |
|
63 | <tbody> |
|
64 | <tr> |
|
65 | <td> |
|
66 |
|
67 #data |
|
68 <table><td></thead>A |
|
69 #errors |
|
70 (1,7): expected-doctype-but-got-start-tag |
|
71 (1,11): unexpected-cell-in-table-body |
|
72 (1,19): XXX-undefined-error |
|
73 (1,20): expected-closing-tag-but-got-eof |
|
74 #document |
|
75 | <html> |
|
76 | <head> |
|
77 | <body> |
|
78 | <table> |
|
79 | <tbody> |
|
80 | <tr> |
|
81 | <td> |
|
82 | "A" |
|
83 |
|
84 #data |
|
85 <table><td></tfoot>A |
|
86 #errors |
|
87 (1,7): expected-doctype-but-got-start-tag |
|
88 (1,11): unexpected-cell-in-table-body |
|
89 (1,19): XXX-undefined-error |
|
90 (1,20): expected-closing-tag-but-got-eof |
|
91 #document |
|
92 | <html> |
|
93 | <head> |
|
94 | <body> |
|
95 | <table> |
|
96 | <tbody> |
|
97 | <tr> |
|
98 | <td> |
|
99 | "A" |
|
100 |
|
101 #data |
|
102 <table><thead><td></tbody>A |
|
103 #errors |
|
104 (1,7): expected-doctype-but-got-start-tag |
|
105 (1,18): unexpected-cell-in-table-body |
|
106 (1,26): XXX-undefined-error |
|
107 (1,27): expected-closing-tag-but-got-eof |
|
108 #document |
|
109 | <html> |
|
110 | <head> |
|
111 | <body> |
|
112 | <table> |
|
113 | <thead> |
|
114 | <tr> |
|
115 | <td> |
|
116 | "A" |