Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: LayoutTests/fast/alignment/parse-justify-self.html

Issue 1136283006: [CSS Grid Layout] Avoid using StyleAdjuster to resolve 'auto' values. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed some layout tests failures. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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'");

Powered by Google App Engine
This is Rietveld 408576698