| Index: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
|
| index 9317634ad8bb709264fa4b96515b7454c71b0ea6..f714d117b3f8de246711aa78812e7acd0fc4147d 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-content-alignment-overflow.html
|
| @@ -33,9 +33,9 @@ body {
|
| justify-content: center safe;
|
| }
|
|
|
| -.centerTrue {
|
| - align-content: center true;
|
| - justify-content: center true;
|
| +.centerUnsafe {
|
| + align-content: center unsafe;
|
| + justify-content: center unsafe;
|
| }
|
|
|
| .end {
|
| @@ -48,9 +48,9 @@ body {
|
| justify-content: end safe;
|
| }
|
|
|
| -.endTrue {
|
| - align-content: end true;
|
| - justify-content: end true;
|
| +.endUnsafe {
|
| + align-content: end unsafe;
|
| + justify-content: end unsafe;
|
| }
|
|
|
| </style>
|
| @@ -69,7 +69,7 @@ body {
|
| </div>
|
|
|
| <div style="position: relative">
|
| - <div class="grid overflowHeight centerTrue" data-expected-width="200" data-expected-height="150">
|
| + <div class="grid overflowHeight centerUnsafe" data-expected-width="200" data-expected-height="150">
|
| <div class="firstRowFirstColumn" data-offset-x="50" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
|
| <div class="secondRowFirstColumn" data-offset-x="50" data-offset-y="75" data-expected-width="50" data-expected-height="100"></div>
|
| <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="-25" data-expected-width="50" data-expected-height="100"></div>
|
| @@ -105,7 +105,7 @@ body {
|
| </div>
|
|
|
| <div style="position: relative">
|
| - <div class="grid overflowHeight endTrue" data-expected-width="200" data-expected-height="150">
|
| + <div class="grid overflowHeight endUnsafe" data-expected-width="200" data-expected-height="150">
|
| <div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="-50" data-expected-width="50" data-expected-height="100"></div>
|
| <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="50" data-expected-width="50" data-expected-height="100"></div>
|
| <div class="firstRowSecondColumn" data-offset-x="150" data-offset-y="-50" data-expected-width="50" data-expected-height="100"></div>
|
|
|