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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssSkew.html

Issue 2514043002: [CSS Typed OM] Add CSSValue->CSSSkew conversions (Closed)
Patch Set: Created 4 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/typedcssom/cssSkew.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
index 175cc1944d07a2f5a920b06d236d0c2dc7f36adc..d907b5985f746ea173e9cf473c24b384ec1741b3 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
@@ -14,10 +14,10 @@ function tanDegrees(degrees) {
}
var values = [
- {input: new CSSSkew(zeroAngle, zeroAngle), ax: 0, ay: 0, cssText: "skew(0, 0)"},
- {input: new CSSSkew(angle(1), angle(2)), ax: 1, ay: 2, cssText: "skew(1, 2)"},
- {input: new CSSSkew(angle(-2), angle(-4)), ax: -2, ay: -4, cssText: "skew(-2, -4)"},
- {input: new CSSSkew(angle(3.4), angle(2.7)), ax: 3.4, ay: 2.7, cssText: "skew(3.4, 2.7)"}
+ {input: new CSSSkew(zeroAngle, zeroAngle), ax: 0, ay: 0, cssText: "skew(0deg, 0deg)"},
+ {input: new CSSSkew(angle(1), angle(2)), ax: 1, ay: 2, cssText: "skew(1deg, 2deg)"},
+ {input: new CSSSkew(angle(-2), angle(-4)), ax: -2, ay: -4, cssText: "skew(-2deg, -4deg)"},
+ {input: new CSSSkew(angle(3.4), angle(2.7)), ax: 3.4, ay: 2.7, cssText: "skew(3.4deg, 2.7deg)"}
];
test(function() {

Powered by Google App Engine
This is Rietveld 408576698