Index: third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html |
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html |
index b8fc5f8700042ce1ed820af337db77056707f1e3..1543050c7bc835630a25e2cfee886f7a6d989438 100644 |
--- a/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html |
+++ b/third_party/WebKit/LayoutTests/fast/alignment/overwrite-content-alignment.html |
@@ -5,7 +5,7 @@ |
} |
.parent .child { |
display: flex; |
- justify-content: flex-end true; |
+ justify-content: flex-end unsafe; |
align-content: center safe; |
} |
#parentId .child { |
@@ -25,7 +25,7 @@ |
description('Test overwriting justify-content and align-content works as expected'); |
var childOfDefaultParent = document.getElementById("childOfDefaultParent"); |
-shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-content')", "flex-end true"); |
+shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('justify-content')", "flex-end unsafe"); |
shouldBeEqualToString("getComputedStyle(childOfDefaultParent, '').getPropertyValue('align-content')", "center safe"); |
var childOfParentId = document.getElementById("childOfParentId"); |