Bug 145693 - [CSS Grid Layout] Support dot sequences in grid-template-areas
Summary: [CSS Grid Layout] Support dot sequences in grid-template-areas
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Manuel Rego Casasnovas
URL:
Keywords:
Depends on:
Blocks: 60731
  Show dependency treegraph
 
Reported: 2015-06-05 05:45 PDT by Manuel Rego Casasnovas
Modified: 2015-06-05 08:20 PDT (History)
3 users (show)

See Also:


Attachments
Patch (9.87 KB, patch)
2015-06-05 05:46 PDT, Manuel Rego Casasnovas
no flags Details | Formatted Diff | Diff

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