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

Unified Diff: third_party/WebKit/LayoutTests/custom-properties/register-property-syntax-parsing-expected.txt

Issue 2951763002: CSS Properties & Values API: replace transform-function with transform-list. (Closed)
Patch Set: move Created 3 years, 6 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/custom-properties/register-property-syntax-parsing-expected.txt
diff --git a/third_party/WebKit/LayoutTests/custom-properties/register-property-syntax-parsing-expected.txt b/third_party/WebKit/LayoutTests/custom-properties/register-property-syntax-parsing-expected.txt
index 7cac70fa7073e07d3a4333d975693c42a87a3ac1..82b345412816fd38e9bf18edb9bfd05180988517 100644
--- a/third_party/WebKit/LayoutTests/custom-properties/register-property-syntax-parsing-expected.txt
+++ b/third_party/WebKit/LayoutTests/custom-properties/register-property-syntax-parsing-expected.txt
@@ -8,7 +8,7 @@ PASS syntax:'<color>+', initialValue:'red' is valid
PASS syntax:' <length>+ | <percentage>', initialValue:'2px 8px' is valid
PASS syntax:'<length>|<percentage>|<length-percentage>', initialValue:'2px' is valid
PASS syntax:'<color> | <image> | <url> | <integer> | <angle>', initialValue:'red' is valid
-PASS syntax:'<time> | <resolution> | <transform-function> | <custom-ident>', initialValue:'red' is valid
+PASS syntax:'<time> | <resolution> | <transform-list> | <custom-ident>', initialValue:'red' is valid
PASS syntax:'*', initialValue:':> hello' is valid
PASS syntax:'*', initialValue:'([ brackets ]) { yay (??)}' is valid
PASS syntax:'*', initialValue:'yep 'this is valid too'' is valid
@@ -37,8 +37,8 @@ PASS syntax:'<time>', initialValue:'calc(2s - 9ms)' is valid
PASS syntax:'<resolution>', initialValue:'10dpi' is valid
PASS syntax:'<resolution>', initialValue:'3dPpX' is valid
PASS syntax:'<resolution>', initialValue:'-5.3dpcm' is valid
-FAIL syntax:'<transform-function>', initialValue:'scale(2)' is valid Failed to execute 'registerProperty' on 'CSS': The initial value provided does not parse for the given syntax.
-FAIL syntax:'<transform-function>+', initialValue:'translateX(2px) rotate(20deg)' is valid Failed to execute 'registerProperty' on 'CSS': The initial value provided does not parse for the given syntax.
+PASS syntax:'<transform-list>', initialValue:'scale(2)' is valid
+PASS syntax:'<transform-list>', initialValue:'translateX(2px) rotate(20deg)' is valid
PASS syntax:'<color>', initialValue:'rgb(12, 34, 56)' is valid
PASS syntax:'<color>', initialValue:'lightgoldenrodyellow' is valid
PASS syntax:'<image>', initialValue:'url(a)' is valid
@@ -116,7 +116,8 @@ PASS syntax:'<angle>', initialValue:'0' is invalid
PASS syntax:'<angle>', initialValue:'10%' is invalid
PASS syntax:'<time>', initialValue:'2px' is invalid
PASS syntax:'<resolution>', initialValue:'10' is invalid
-PASS syntax:'<transform-function>', initialValue:'scale()' is invalid
+PASS syntax:'<transform-list>', initialValue:'scale()' is invalid
+PASS syntax:'<transform-list>+', initialValue:'translateX(2px) rotate(20deg)' is invalid
PASS syntax:'<color>', initialValue:'fancy-looking' is invalid
PASS syntax:'<image>', initialValue:'banana.png' is invalid
PASS syntax:'<url>', initialValue:'banana.png' is invalid

Powered by Google App Engine
This is Rietveld 408576698