comments01.dat (3344B)
1 #data 2 FOO<!-- BAR -->BAZ 3 #errors 4 (1,3): expected-doctype-but-got-chars 5 #document 6 | <html> 7 | <head> 8 | <body> 9 | "FOO" 10 | <!-- BAR --> 11 | "BAZ" 12 13 #data 14 FOO<!-- BAR --!>BAZ 15 #errors 16 (1,3): expected-doctype-but-got-chars 17 (1,15): unexpected-bang-after-double-dash-in-comment 18 #document 19 | <html> 20 | <head> 21 | <body> 22 | "FOO" 23 | <!-- BAR --> 24 | "BAZ" 25 26 #data 27 FOO<!-- BAR --! >BAZ 28 #errors 29 (1,3): expected-doctype-but-got-chars 30 #new-errors 31 (1:20) eof-in-comment 32 #document 33 | <html> 34 | <head> 35 | <body> 36 | "FOO" 37 | <!-- BAR --! >BAZ --> 38 39 #data 40 FOO<!-- BAR --! 41 >BAZ 42 #errors 43 (1,3): expected-doctype-but-got-chars 44 #new-errors 45 (1:20) eof-in-comment 46 #document 47 | <html> 48 | <head> 49 | <body> 50 | "FOO" 51 | <!-- BAR --! 52 >BAZ --> 53 54 #data 55 FOO<!-- BAR -- >BAZ 56 #errors 57 (1,3): expected-doctype-but-got-chars 58 (1,15): unexpected-char-in-comment 59 (1,21): eof-in-comment 60 #document 61 | <html> 62 | <head> 63 | <body> 64 | "FOO" 65 | <!-- BAR -- >BAZ --> 66 67 #data 68 FOO<!-- BAR -- <QUX> -- MUX -->BAZ 69 #errors 70 (1,3): expected-doctype-but-got-chars 71 (1,15): unexpected-char-in-comment 72 (1,24): unexpected-char-in-comment 73 #document 74 | <html> 75 | <head> 76 | <body> 77 | "FOO" 78 | <!-- BAR -- <QUX> -- MUX --> 79 | "BAZ" 80 81 #data 82 FOO<!-- BAR -- <QUX> -- MUX --!>BAZ 83 #errors 84 (1,3): expected-doctype-but-got-chars 85 (1,15): unexpected-char-in-comment 86 (1,24): unexpected-char-in-comment 87 (1,31): unexpected-bang-after-double-dash-in-comment 88 #document 89 | <html> 90 | <head> 91 | <body> 92 | "FOO" 93 | <!-- BAR -- <QUX> -- MUX --> 94 | "BAZ" 95 96 #data 97 FOO<!-- BAR -- <QUX> -- MUX -- >BAZ 98 #errors 99 (1,3): expected-doctype-but-got-chars 100 (1,15): unexpected-char-in-comment 101 (1,24): unexpected-char-in-comment 102 (1,31): unexpected-char-in-comment 103 (1,35): eof-in-comment 104 #document 105 | <html> 106 | <head> 107 | <body> 108 | "FOO" 109 | <!-- BAR -- <QUX> -- MUX -- >BAZ --> 110 111 #data 112 FOO<!---->BAZ 113 #errors 114 (1,3): expected-doctype-but-got-chars 115 #document 116 | <html> 117 | <head> 118 | <body> 119 | "FOO" 120 | <!-- --> 121 | "BAZ" 122 123 #data 124 FOO<!--->BAZ 125 #errors 126 (1,3): expected-doctype-but-got-chars 127 (1,9): incorrect-comment 128 #document 129 | <html> 130 | <head> 131 | <body> 132 | "FOO" 133 | <!-- --> 134 | "BAZ" 135 136 #data 137 FOO<!-->BAZ 138 #errors 139 (1,3): expected-doctype-but-got-chars 140 (1,8): incorrect-comment 141 #document 142 | <html> 143 | <head> 144 | <body> 145 | "FOO" 146 | <!-- --> 147 | "BAZ" 148 149 #data 150 <?xml version="1.0">Hi 151 #errors 152 (1,1): expected-tag-name-but-got-question-mark 153 (1,22): expected-doctype-but-got-chars 154 #document 155 | <!-- ?xml version="1.0" --> 156 | <html> 157 | <head> 158 | <body> 159 | "Hi" 160 161 #data 162 <?xml version="1.0"> 163 #errors 164 (1,1): expected-tag-name-but-got-question-mark 165 (1,20): expected-doctype-but-got-eof 166 #document 167 | <!-- ?xml version="1.0" --> 168 | <html> 169 | <head> 170 | <body> 171 172 #data 173 <?xml version 174 #errors 175 (1,1): expected-tag-name-but-got-question-mark 176 (1,13): expected-doctype-but-got-eof 177 #document 178 | <!-- ?xml version --> 179 | <html> 180 | <head> 181 | <body> 182 183 #data 184 FOO<!----->BAZ 185 #errors 186 (1,3): expected-doctype-but-got-chars 187 (1,10): unexpected-dash-after-double-dash-in-comment 188 #document 189 | <html> 190 | <head> 191 | <body> 192 | "FOO" 193 | <!-- - --> 194 | "BAZ" 195 196 #data 197 <html><!-- comment --><title>Comment before head</title> 198 #errors 199 (1,6): expected-doctype-but-got-start-tag 200 #document 201 | <html> 202 | <!-- comment --> 203 | <head> 204 | <title> 205 | "Comment before head" 206 | <body>