Bug 145693

Summary: [CSS Grid Layout] Support dot sequences in grid-template-areas
Product: WebKit Reporter: Manuel Rego Casasnovas <rego>
Component: CSSAssignee: Manuel Rego Casasnovas <rego>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, jfernandez, svillar
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 60731    
Attachments:
Description Flags
Patch none

Description Manuel Rego Casasnovas 2015-06-05 05:45:03 PDT
The last changes in the editor's draft add support for dot sequences in grid-template-areas (http://dev.w3.org/csswg/css-grid/#valdef-grid-template-areas-string):
"A sequence of one or more "." (U+002E FULL STOP), representing a null cell token"

So the following example:
  grid-template-areas: "... title ....."
                       "nav main  aside";
Should be equivalent to:
  grid-template-areas: ". title ."
                       "nav main aside";
Comment 1 Manuel Rego Casasnovas 2015-06-05 05:46:47 PDT
Created attachment 254352 [details]
Patch
Comment 2 Sergio Villar Senin 2015-06-05 07:32:14 PDT
Comment on attachment 254352 [details]
Patch

Nice
Comment 3 WebKit Commit Bot 2015-06-05 08:20:11 PDT
Comment on attachment 254352 [details]
Patch

Clearing flags on attachment: 254352

Committed r185246: <http://trac.webkit.org/changeset/185246>
Comment 4 WebKit Commit Bot 2015-06-05 08:20:14 PDT
All reviewed patches have been landed.  Closing bug.