[Webkit-unassigned] [Bug 24742] CSS tokenizer allows color in 6 hex digit notation to be followed by the next token without separation

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Mar 22 02:18:00 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=24742


cwzwarich at uwaterloo.ca changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cwzwarich at uwaterloo.ca




------- Comment #2 from cwzwarich at uwaterloo.ca  2009-03-22 02:18 PDT -------
This seems to be the case from the spec:

http://www.w3.org/TR/CSS21/grammar.html

The lexical scanner given there will take the "#0077ff9px" and give a single
HASH token, because it eats the '#' and then matches a name, which is
"0077ff9px". Flex has "longest match" semantics, so this seems to be the
correct interpretation. I am sure you knew this, just filling it in for
context.

Are there any possibility compatibility issues with this change?


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list