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

Unified Diff: third_party/WebKit/LayoutTests/css3/flexbox/flex-property-parsing-expected.txt

Issue 1464253002: Fix non-<number> calcs being accepted as numbers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/flex-property-parsing-expected.txt
diff --git a/third_party/WebKit/LayoutTests/css3/flexbox/flex-property-parsing-expected.txt b/third_party/WebKit/LayoutTests/css3/flexbox/flex-property-parsing-expected.txt
index b314b21223867671ccbc28fb86a6014e043d4060..3f937573caaedd43054b781caa4cf6e6457c7381 100644
--- a/third_party/WebKit/LayoutTests/css3/flexbox/flex-property-parsing-expected.txt
+++ b/third_party/WebKit/LayoutTests/css3/flexbox/flex-property-parsing-expected.txt
@@ -69,6 +69,10 @@ PASS flexitem.style.flex is "1.75 2 3px"
PASS getComputedStyle(flexitem).flex is "1.75 2 3px"
PASS flexitem.style.flex is "1 2 3px"
PASS getComputedStyle(flexitem).flex is "1 2 3px"
+PASS flexitem.style.flex is "4 3 calc(20px + 40%)"
+PASS getComputedStyle(flexitem).flex is "4 3 calc(20px + 40%)"
+PASS flexitem.style.flex is "1 2 calc(10px + 50%)"
+PASS getComputedStyle(flexitem).flex is "1 2 calc(10px + 50%)"
PASS flexitem.style.flex is "0 0 auto"
PASS getComputedStyle(flexitem).flex is "0 0 auto"
PASS flexitem.style.flex is "0 1 auto"

Powered by Google App Engine
This is Rietveld 408576698