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

Unified Diff: LayoutTests/fast/alignment/parse-justify-content.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-content.html
diff --git a/LayoutTests/fast/alignment/parse-justify-content.html b/LayoutTests/fast/alignment/parse-justify-content.html
index f250906754c218f79d0c816a7ae89291b4b03526..73af0a2108a1cade3cd43253bde0d8b1edb2aa39 100644
--- a/LayoutTests/fast/alignment/parse-justify-content.html
+++ b/LayoutTests/fast/alignment/parse-justify-content.html
@@ -294,7 +294,7 @@ checkValues(element, "justifyContent", "justify-content", "auto", "start");
element.style.display = "flex";
element.style.justifyContent = "auto";
-checkValues(element, "justifyContent", "justify-content", "auto", "flex-start");
+checkValues(element, "justifyContent", "justify-content", "auto", "stretch");
element.style.display = "grid";
element.style.justifyContent = "auto";
@@ -343,7 +343,7 @@ checkInitialValues(element, "justifyContent", "justify-content", "space-between
debug("");
debug("Test the value 'initial' for flex containers");
element.style.display = "flex";
-checkInitialValues(element, "justifyContent", "justify-content", "right true", "flex-start");
+checkInitialValues(element, "justifyContent", "justify-content", "right true", "stretch");
debug("");
debug("Test the value 'inherit'");

Powered by Google App Engine
This is Rietveld 408576698