| Index: LayoutTests/fast/alignment/parse-align-self.html
|
| diff --git a/LayoutTests/fast/alignment/parse-align-self.html b/LayoutTests/fast/alignment/parse-align-self.html
|
| index 54c0ea2d0d35c62abe6fe1629a03b81e45018f49..dcb6901f522677494b901346d0aa5c8c87dabccf 100644
|
| --- a/LayoutTests/fast/alignment/parse-align-self.html
|
| +++ b/LayoutTests/fast/alignment/parse-align-self.html
|
| @@ -266,19 +266,19 @@ debug("");
|
| debug("Test the value 'initial' for positioned elements");
|
| container.style.display = "";
|
| element.style.position = "absolute";
|
| -checkInitialValues(element, "alignSelf", "align-self", "left", "stretch");
|
| +checkInitialValues(element, "alignSelf", "align-self", "left", "auto");
|
|
|
| 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", "auto");
|
|
|
| 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", "auto");
|
|
|
| debug("");
|
| debug("Test the value 'inherit'");
|
|
|