| Index: third_party/WebKit/LayoutTests/fast/alignment/new-alignment-values-invalid-if-grid-not-enabled.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/alignment/new-alignment-values-invalid-if-grid-not-enabled.html b/third_party/WebKit/LayoutTests/fast/alignment/new-alignment-values-invalid-if-grid-not-enabled.html
|
| index 5bd805559221d969dcc98624a9a7004e43ddfcb7..b767aa9f4116674ea2224784a3d54824015979ec 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/alignment/new-alignment-values-invalid-if-grid-not-enabled.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/alignment/new-alignment-values-invalid-if-grid-not-enabled.html
|
| @@ -29,10 +29,10 @@ function checkAlignItemsValue(value, computedValue, gridEnabled)
|
| container.style.webkitAlignItems = value;
|
| if (gridEnabled) {
|
| checkValues(container, "alignItems", "align-items", value, computedValue);
|
| - checkValues(item, "alignSelf", "align-self", "auto", computedValue);
|
| + checkValues(item, "alignSelf", "align-self", "auto", "auto");
|
| } else {
|
| checkValues(container, "alignItems", "align-items", "flex-end", "flex-end");
|
| - checkValues(item, "alignSelf", "align-self", "auto", "flex-end");
|
| + checkValues(item, "alignSelf", "align-self", "auto", "auto");
|
| }
|
| }
|
|
|
|
|