Index: third_party/WebKit/LayoutTests/fast/alignment/parse-align-self.html |
diff --git a/third_party/WebKit/LayoutTests/fast/alignment/parse-align-self.html b/third_party/WebKit/LayoutTests/fast/alignment/parse-align-self.html |
index 5cca1b968d1f302313ba63653d68a9f4d7f357b6..85f4f0c60cda648ab4434c38f3a004acac43ef11 100644 |
--- a/third_party/WebKit/LayoutTests/fast/alignment/parse-align-self.html |
+++ b/third_party/WebKit/LayoutTests/fast/alignment/parse-align-self.html |
@@ -175,7 +175,7 @@ debug(""); |
debug("Test initial value of align-self through JS"); |
element = document.createElement("div"); |
document.body.appendChild(element); |
-shouldBe("getComputedStyle(element, '').getPropertyValue('align-self')", "'start'"); |
+shouldBe("getComputedStyle(element, '').getPropertyValue('align-self')", "'normal'"); |
debug(""); |
debug("Test getting and setting align-self through JS"); |
@@ -202,15 +202,15 @@ element.style.alignSelf = "self-start"; |
checkValues(element, "alignSelf", "align-self", "self-start", "self-start"); |
element.style.alignSelf = "auto"; |
-checkValues(element, "alignSelf", "align-self", "auto", "start"); |
+checkValues(element, "alignSelf", "align-self", "auto", "normal"); |
container.style.display = "flex"; |
element.style.alignSelf = "auto"; |
-checkValues(element, "alignSelf", "align-self", "auto", "stretch"); |
+checkValues(element, "alignSelf", "align-self", "auto", "normal"); |
container.style.display = "grid"; |
element.style.alignSelf = "auto"; |
-checkValues(element, "alignSelf", "align-self", "auto", "stretch"); |
+checkValues(element, "alignSelf", "align-self", "auto", "normal"); |
element.style.alignSelf = "self-end"; |
checkValues(element, "alignSelf", "align-self", "self-end", "self-end"); |
@@ -250,35 +250,35 @@ checkBadValues(element, "alignSelf", "align-self", "legacy left right"); |
debug(""); |
debug("Test the value 'initial'"); |
container.style.display = ""; |
-checkInitialValues(element, "alignSelf", "align-self", "center", "start"); |
+checkInitialValues(element, "alignSelf", "align-self", "center", "normal"); |
debug(""); |
debug("Test the value 'initial' for grid containers"); |
container.style.display = "grid"; |
-checkInitialValues(element, "alignSelf", "align-self", "left safe", "stretch"); |
+checkInitialValues(element, "alignSelf", "align-self", "left safe", "normal"); |
debug(""); |
debug("Test the value 'initial' for flex containers"); |
container.style.display = "flex"; |
-checkInitialValues(element, "alignSelf", "align-self", "right unsafe", "stretch"); |
+checkInitialValues(element, "alignSelf", "align-self", "right unsafe", "normal"); |
debug(""); |
debug("Test the value 'initial' for positioned elements"); |
container.style.display = ""; |
element.style.position = "absolute"; |
-checkInitialValues(element, "alignSelf", "align-self", "left", "start"); |
+checkInitialValues(element, "alignSelf", "align-self", "left", "normal"); |
debug(""); |
debug("Test the value 'initial' for positioned elements in grid containers"); |
container.style.display = "grid"; |
element.style.position = "absolute"; |
-checkInitialValues(element, "alignSelf", "align-self", "right", "stretch"); |
+checkInitialValues(element, "alignSelf", "align-self", "right", "normal"); |
debug(""); |
debug("Test the value 'initial' for positioned elements in grid containers"); |
container.style.display = "flex"; |
element.style.position = "absolute"; |
-checkInitialValues(element, "alignSelf", "align-self", "end", "stretch"); |
+checkInitialValues(element, "alignSelf", "align-self", "end", "normal"); |
debug(""); |
debug("Test the value 'inherit'"); |