Re: [css2] escapement in string literals

On Nov 10, 2012 9:08 PM, "Andrew Fedoniouk" <news@terrainformatica.com>
wrote:
>
> I am trying to get tokenization of string literals here
> http://www.w3.org/TR/CSS21/syndata.html#tokenization
> In particular {unicode} thing...
>
> What will this string produce:
> "\0123456789"
> ?

The Unicode char U+12345 followed by "6789".

> And this too:
> "\012345 6789"

Same.

> in particular will it be white space between &#x012345 character and
"6789" ?

No. Character escaped also consume a single following white space.

~TJ

Received on Sunday, 11 November 2012 05:33:47 UTC