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

Unified Diff: third_party/WebKit/LayoutTests/transforms/rotate-parsing.html

Issue 2625313002: CSS: Rotate support for none and fixed responsive-test.js (Closed)
Patch Set: Created 3 years, 11 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/transforms/rotate-parsing.html
diff --git a/third_party/WebKit/LayoutTests/transforms/rotate-parsing.html b/third_party/WebKit/LayoutTests/transforms/rotate-parsing.html
index eb8a7d8f134309c90414a6911d0eac60393d171a..ecda5412e8fb3dde3f0388b8cf38733688014ab8 100644
--- a/third_party/WebKit/LayoutTests/transforms/rotate-parsing.html
+++ b/third_party/WebKit/LayoutTests/transforms/rotate-parsing.html
@@ -6,9 +6,10 @@
<script>
expect = expect.bind(this, 'rotate', 'rotate');
-expect('initial').parsesAs('initial').isComputedTo('0deg');
+expect('initial').parsesAs('initial').isComputedTo('none');
expect('inherit').parsesAs('inherit');
+expect('none').parsesAs('none').isComputedTo('none');
expect('10deg').parsesAs('10deg').isComputedTo('10deg');
expect('0 0 1 10deg').parsesAs('0 0 1 10deg').isComputedTo('10deg');
expect('-1.5 2 3 10deg').parsesAs('-1.5 2 3 10deg').isComputedTo('-1.5 2 3 10deg');
@@ -21,7 +22,6 @@ expect('calc(1turn - 270deg)').parsesAs('calc(90deg)').isComputedTo('90deg');
expect('0 calc(0.5 + 0.5) 1 calc(1turn - 270deg + 400grad)').parsesAs('0 1 1 calc(450deg)').isComputedTo('0 1 1 450deg');
expect('2').isInvalid();
-expect('none').isInvalid();
expect('1 2deg').isInvalid();
expect('1 2 45deg').isInvalid();
expect('1 2 3 4 45deg').isInvalid();

Powered by Google App Engine
This is Rietveld 408576698