Bug 137216

Summary: [CSS Grid Layout] Tokenizer for parsing grid-template-areas's value.
Product: WebKit Reporter: Javier Fernandez <jfernandez>
Component: Layout and RenderingAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: jfernandez, rego, svillar, syoichi
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 60731    

Description Javier Fernandez 2014-09-29 09:47:11 PDT
The current CSS Grid Layout specification defines the following process to parse the grid-templates-area's string value.

Tokenize the string into a list of the following tokens, using longest-match semantics:

* A sequence of name code points, representing a named cell token with a name consisting of its code points.
* A "." (U+002E FULL STOP), representing a null cell token.
* A sequence of whitespace, representing nothing (do not produce a token).
* A sequence of any other characters, representing a trash token.