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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt

Issue 2455093002: [css-align] Don't resolve 'auto' values for computed style. (Closed)
Patch Set: Removed some outdated comments. Created 3 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: third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt b/third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt
index 32a83c25aaa07d655493758f321ae6970ac7d86c..6eb13f0987abfb53468790c4607f68d70c5d8722 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/css-properties-expected.txt
@@ -29,12 +29,12 @@ PASS window.getComputedStyle(flexbox, null).justifyContent is "space-between"
PASS flexbox.style.justifyContent is ""
PASS window.getComputedStyle(flexbox, null).justifyContent is "normal"
PASS flexbox.style.alignSelf is ""
-PASS window.getComputedStyle(flexbox, null).alignSelf is "normal"
-PASS window.getComputedStyle(document.documentElement, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexbox, null).alignSelf should be normal. Was auto.
cbiesinger 2017/05/24 16:54:15 That doesn't seem right. Shouldn't you change css-
jfernandez 2017/05/24 22:46:58 Acknowledged.
+FAIL window.getComputedStyle(document.documentElement, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignSelf is ""
-PASS window.getComputedStyle(flexbox, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexbox, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignSelf is "auto"
-PASS window.getComputedStyle(flexbox, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexbox, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignSelf is "flex-start"
PASS window.getComputedStyle(flexbox, null).alignSelf is "flex-start"
PASS flexbox.style.alignSelf is "flex-end"
@@ -46,41 +46,41 @@ PASS window.getComputedStyle(flexbox, null).alignSelf is "stretch"
PASS flexbox.style.alignSelf is "baseline"
PASS window.getComputedStyle(flexbox, null).alignSelf is "baseline"
PASS flexbox.style.alignSelf is ""
-PASS window.getComputedStyle(flexbox, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexbox, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignItems is ""
PASS flexitem.style.alignSelf is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "normal"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignItems is ""
PASS flexitem.style.alignSelf is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "normal"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignItems is ""
PASS flexitem.style.alignSelf is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "normal"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignItems is "flex-start"
PASS flexitem.style.alignSelf is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "flex-start"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "flex-start"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be flex-start. Was auto.
PASS flexbox.style.alignItems is "flex-end"
PASS window.getComputedStyle(flexbox, null).alignItems is "flex-end"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "flex-end"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be flex-end. Was auto.
PASS flexbox.style.alignItems is "center"
PASS window.getComputedStyle(flexbox, null).alignItems is "center"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "center"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be center. Was auto.
PASS flexbox.style.alignItems is "stretch"
PASS window.getComputedStyle(flexbox, null).alignItems is "stretch"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "stretch"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be stretch. Was auto.
PASS flexbox.style.alignItems is "baseline"
PASS window.getComputedStyle(flexbox, null).alignItems is "baseline"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "baseline"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be baseline. Was auto.
PASS flexbox.style.alignItems is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "normal"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be normal. Was auto.
PASS flexbox.style.alignItems is ""
PASS window.getComputedStyle(flexbox, null).alignItems is "normal"
-PASS window.getComputedStyle(flexitem, null).alignSelf is "normal"
+FAIL window.getComputedStyle(flexitem, null).alignSelf should be normal. Was auto.
PASS window.getComputedStyle(detachedFlexbox, null).alignSelf is ""
PASS window.getComputedStyle(detachedFlexItem, null).alignSelf is ""
PASS flexbox.style.flexDirection is ""

Powered by Google App Engine
This is Rietveld 408576698