- Notifications
You must be signed in to change notification settings - Fork62
Test zero byte after hyphen in comment#128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
"output":[["Comment", "-\uFFFD"]], | ||
"errors":[ | ||
{ "code": "incorrectly-opened-comment", "line": 1, "col": 4 }, | ||
{ "code": "unexpected-null-character", "line": 1, "col": 4 }, |
There was a problem hiding this comment.
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.
"errors":[ | ||
{ "code": "incorrectly-opened-comment", "line": 1, "col": 4 }, | ||
{ "code": "unexpected-null-character", "line": 1, "col": 4 }, | ||
{ "code": "eof-in-comment", "line": 1, "col": 5 } |
There was a problem hiding this comment.
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
No description provided.