Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[css-syntax] 4.3.5 Consume a string token: double parse error #1494

Closed
waldbaerkoch opened this issue Jun 2, 2017 · 1 comment
Closed

[css-syntax] 4.3.5 Consume a string token: double parse error #1494

waldbaerkoch opened this issue Jun 2, 2017 · 1 comment

Comments

@waldbaerkoch
Copy link

Input:

"foo\<EOF>

" triggers 4.3.5 Consume a string token. There, after having consumed foo:
Next code point is

  • U+005C REVERSE SOLIDUS (\)
    • If the next input code point is EOF (yes), this is a parse error (1st time); do nothing.

Next code point is

  • EOF
    • This is a parse error (2nd time). Return the .

So parse error is invoked twice. The occurence in U+005C REVERSE SOLIDUS (\) is not necessary.

Johannes

@tabatkins
Copy link
Member

You're right; removed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants