Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions tokenizer/test3.test
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,15 @@
{ "code": "incorrectly-opened-comment", "line": 1, "col": 3 }
]},

{"description":"<!-\\u0000",
"input":"<!-\u0000",
"output":[["Comment", "-\uFFFD"]],
"errors":[
{ "code": "incorrectly-opened-comment", "line": 1, "col": 4 },
{ "code": "unexpected-null-character", "line": 1, "col": 4 },
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Column indices are zero-based, so it should be column 3 here and in the error above.

{ "code": "eof-in-comment", "line": 1, "col": 5 }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This ends up in the bogus comment state which doesn't error on EOF: https://html.spec.whatwg.org/multipage/parsing.html#bogus-comment-state

]},

{"description":"<!--",
"input":"<!--",
"output":[["Comment", ""]],
Expand Down