diff options
| author | jfernandez@igalia.com <jfernandez@igalia.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-01-30 18:09:06 +0000 |
|---|---|---|
| committer | jfernandez@igalia.com <jfernandez@igalia.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2014-01-30 18:09:06 +0000 |
| commit | 362c6b5249f503bd3c5420a455629a58360aa0ec (patch) | |
| tree | 4ce80ad91f6b2ea4c7c487b0ab0690797aa488a9 /third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html | |
| parent | 49ee298f4cf5b9a3e1858bee7660c3dbc296266f (diff) | |
| download | chromium_src-362c6b5249f503bd3c5420a455629a58360aa0ec.zip chromium_src-362c6b5249f503bd3c5420a455629a58360aa0ec.tar.gz chromium_src-362c6b5249f503bd3c5420a455629a58360aa0ec.tar.bz2 | |
In the latest WD, grid-definition-{columns|rows} were renamed to grid-template-{columns|rows}.
BUG=337626
Review URL: https://codereview.chromium.org/146773002
git-svn-id: svn://svn.chromium.org/blink/trunk@166143 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html')
| -rw-r--r-- | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html index 05a634b..f9441bf 100644 --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-element-min-max-width.html @@ -9,13 +9,13 @@ if (window.testRunner) <style> .minWidthGrid { min-width: 100px; - grid-definition-columns: 50px; - grid-definition-rows: 40px; + grid-template-columns: 50px; + grid-template-rows: 40px; } .maxWidthGrid { max-width: 100px; - grid-definition-columns: 150px 50px; - grid-definition-rows: 40px; + grid-template-columns: 150px 50px; + grid-template-rows: 40px; } .minWidthAutoGrid { |
