[Bug 16374] Allow transform function list with out explicit separation

https://www.w3.org/Bugs/Public/show_bug.cgi?id=16374

--- Comment #8 from Aryeh Gregor <ayg@aryeh.name> 2012-03-14 18:05:55 UTC ---
As I'm reading CSS 3 Values and Units, optional whitespace is always allowed
between tokens in values:

"""
Component values are specified in terms of tokens, as described in Chapter 4 of
[CSS21]. As the grammar allows spaces between tokens in the components of the
value production, spaces may appear between tokens in property values.
"""
http://dev.w3.org/csswg/css3-values/#component-whitespace

So I suggest we just remove the sentence "The individual transform functions
are separated by whitespace".  It's already covered by other specs.  I already
have a test for this in 3d-transforms.html, which tests that 

  "tranSlatex( 16px )rotatez(-90deg)  rotate(100grad)\ttranslate3d(-12pt, 0,
0.0em)"

is parsed as:

  "translateX(16px) rotateZ(-90deg) rotate(100grad) translate3d(-12pt, 0px,
0em)"

-- 
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 14 March 2012 18:06:01 UTC