Bug 137216 - [CSS Grid Layout] Tokenizer for parsing grid-template-areas's value.
Summary: [CSS Grid Layout] Tokenizer for parsing grid-template-areas's value.
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks: 60731
  Show dependency treegraph
 
Reported: 2014-09-29 09:47 PDT by Javier Fernandez
Modified: 2014-09-29 18:23 PDT (History)
4 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.