Skip to content

Commit ec7d043

Browse files
stevecheckowayjgraham
authored andcommitted
Fix entity errors
Named character references in attributes whose last character is not `;` and for which the next input character is `=` (or ASCII alphanumeric, but this isn't tested here), flushes the code points consumed as a character reference _without_ adding a parse error. Named character references not in attributes whose last character is not `;` are errors, regardless of the following character as noted in the `#new-errors` section but without an entry in `#errors`, the number of errors are wrong. (See #107). Separately, this adds the missing expected-doctype-but-got-start-tag error.
1 parent 1421b7f commit ec7d043

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tree-construction/entities02.dat

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
#data
4646
<div bar="ZZ&gt=YY"></div>
4747
#errors
48-
(1,15): named-entity-without-semicolon
4948
(1,20): expected-doctype-but-got-start-tag
5049
#document
5150
| <html>
@@ -204,7 +203,6 @@
204203
#data
205204
<div bar="ZZ&pound=23"></div>
206205
#errors
207-
(1,18): named-entity-without-semicolon
208206
(1,23): expected-doctype-but-got-start-tag
209207
#document
210208
| <html>
@@ -299,6 +297,8 @@
299297
#data
300298
<div>ZZ&AElig=</div>
301299
#errors
300+
(1,5): expected-doctype-but-got-start-tag
301+
(1:14) missing-semicolon-after-character-reference
302302
#new-errors
303303
(1:14) missing-semicolon-after-character-reference
304304
#document

0 commit comments

Comments
 (0)