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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform-expected.txt

Issue 2514043002: [CSS Typed OM] Add CSSValue->CSSSkew conversions (Closed)
Patch Set: Merge branch 'update-transform-tests' into cssskew-fromcssvalue-2 Created 4 years 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/typedcssom/inlinestyle/properties/transform-expected.txt
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform-expected.txt b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform-expected.txt
index c69cea0b893ff402f5c134f7b66ea83f3dbb43bf..b9af4b0fbce0bbf2eb738a953623a8501265ab62 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform-expected.txt
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform-expected.txt
@@ -3,6 +3,14 @@ PASS Setting transform to none
PASS Setting transform to initial
PASS Setting transform to inherit
PASS Setting transform to unset
+PASS Setting transform to CSSTransformValue with value skew(30deg, 0deg)
+PASS Setting transform to CSSTransformValue with value skew(10rad, 0deg)
+PASS Setting transform to CSSTransformValue with value skew(2grad, 0deg)
+PASS Setting transform to CSSTransformValue with value skew(0.2turn, 0deg)
+PASS Setting transform to CSSTransformValue with value skew(0deg, 30deg)
+PASS Setting transform to CSSTransformValue with value skew(0deg, 10rad)
+PASS Setting transform to CSSTransformValue with value skew(0deg, 2grad)
+PASS Setting transform to CSSTransformValue with value skew(0deg, 0.2turn)
PASS Setting transform to CSSTransformValue with value rotate(30deg)
PASS Setting transform to CSSTransformValue with value rotate(10rad)
PASS Setting transform to CSSTransformValue with value rotate(2grad)
@@ -24,6 +32,14 @@ FAIL Getting transform when it is set to none assert_true: result instanceof CSS
FAIL Getting transform when it is set to initial assert_true: result instanceof CSSKeywordValue: expected true got false
FAIL Getting transform when it is set to inherit assert_true: result instanceof CSSKeywordValue: expected true got false
FAIL Getting transform when it is set to unset assert_true: result instanceof CSSKeywordValue: expected true got false
+PASS Getting transform with a CSSTransformValue whose value is skew(30deg, 0deg)
+PASS Getting transform with a CSSTransformValue whose value is skew(10rad, 0deg)
+PASS Getting transform with a CSSTransformValue whose value is skew(2grad, 0deg)
+PASS Getting transform with a CSSTransformValue whose value is skew(0.2turn, 0deg)
+PASS Getting transform with a CSSTransformValue whose value is skew(0deg, 30deg)
+PASS Getting transform with a CSSTransformValue whose value is skew(0deg, 10rad)
+PASS Getting transform with a CSSTransformValue whose value is skew(0deg, 2grad)
+PASS Getting transform with a CSSTransformValue whose value is skew(0deg, 0.2turn)
PASS Getting transform with a CSSTransformValue whose value is rotate(30deg)
PASS Getting transform with a CSSTransformValue whose value is rotate(10rad)
PASS Getting transform with a CSSTransformValue whose value is rotate(2grad)
@@ -32,6 +48,18 @@ PASS Getting transform with a CSSTransformValue whose value is rotate3d(1, 2, 3,
PASS Getting transform with a CSSTransformValue whose value is rotate3d(1, 2, 3, 10rad)
PASS Getting transform with a CSSTransformValue whose value is rotate3d(1, 2, 3, 2grad)
PASS Getting transform with a CSSTransformValue whose value is rotate3d(1, 2, 3, 0.2turn)
+PASS Getting transform when it is set to "skew(45deg)" via a string
+PASS Getting transform when it is set to "skew(1rad)" via a string
+PASS Getting transform when it is set to "skew(6.2grad)" via a string
+PASS Getting transform when it is set to "skew(0.31turn)" via a string
+PASS Getting transform when it is set to "skewX(45deg)" via a string
+PASS Getting transform when it is set to "skewX(1rad)" via a string
+PASS Getting transform when it is set to "skewX(6.2grad)" via a string
+PASS Getting transform when it is set to "skewX(0.31turn)" via a string
+PASS Getting transform when it is set to "skewY(45deg)" via a string
+PASS Getting transform when it is set to "skewY(1rad)" via a string
+PASS Getting transform when it is set to "skewY(6.2grad)" via a string
+PASS Getting transform when it is set to "skewY(0.31turn)" via a string
PASS Getting transform when it is set to "rotateX(45deg)" via a string
PASS Getting transform when it is set to "rotateX(1rad)" via a string
PASS Getting transform when it is set to "rotateX(6.2grad)" via a string
@@ -52,5 +80,9 @@ PASS Appending to transform throws
PASS Unhandled case doesn't crash.
PASS Getting transform when it has a rotate with a calc angle does not crash
PASS Getting transform when it has a rotate3d with a calc angle does not crash
+PASS Getting transform when it has a skew with a calc angle does not crash
+PASS Getting transform when it has a 2-argument skew with a calc angle does not crash
+PASS Getting transform when it has a skewX with a calc angle does not crash
+PASS Getting transform when it has a skewY with a calc angle does not crash
Harness: the test ran to completion.

Powered by Google App Engine
This is Rietveld 408576698