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