| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
|
| index e07282add042d91c29147e17d77f65771586e04d..523aabdd328c4854b15ce98cd9f6c4e446f23bee 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-shorthand-get-set.html
|
| @@ -7,7 +7,7 @@
|
| grid: none;
|
| }
|
| .gridWithTemplate {
|
| - grid: 15px / 10px;
|
| + grid: 10px / 15px;
|
| }
|
| .gridWithInherit {
|
| grid: inherit;
|
| @@ -87,8 +87,8 @@
|
|
|
| debug("");
|
| debug("Test getting and setting 'grid' shorthand through JS");
|
| - testGridDefinitionsSetJSValues("10px / 20px", "10px", "20px", "none", "row", "auto", "auto", "10px", "20px", "none", "initial", "initial", "initial");
|
| - testGridDefinitionsSetJSValues("10px / [line] 'a' 20px", "10px", "[line] 20px", "\"a\"", "row", "auto", "auto", "10px", "[line] 20px", "\"a\"", "initial", "initial", "initial");
|
| + testGridDefinitionsSetJSValues("20px / 10px", "10px", "20px", "none", "row", "auto", "auto", "10px", "20px", "none", "initial", "initial", "initial");
|
| + testGridDefinitionsSetJSValues("[line] 'a' 20px / 10px", "10px", "[line] 20px", "\"a\"", "row", "auto", "auto", "10px", "[line] 20px", "\"a\"", "initial", "initial", "initial");
|
| testGridDefinitionsSetJSValues("row dense 20px", "none", "none", "none", "row dense", "20px", "20px", "initial", "initial", "initial", "row dense", "20px", "20px");
|
| testGridDefinitionsSetJSValues("column 20px / 10px", "none", "none", "none", "column", "20px", "10px", "initial", "initial", "initial", "column", "20px", "10px");
|
|
|
|
|