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

Unified Diff: third_party/WebKit/LayoutTests/transforms/scale-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/scale-parsing.html
diff --git a/third_party/WebKit/LayoutTests/transforms/scale-parsing.html b/third_party/WebKit/LayoutTests/transforms/scale-parsing.html
index 4e4bdeb9562b2d3696a8e5f3e04913941bbee8ce..70761c3f2b25b3d39daf1091f1e52c7e5306db58 100644
--- a/third_party/WebKit/LayoutTests/transforms/scale-parsing.html
+++ b/third_party/WebKit/LayoutTests/transforms/scale-parsing.html
@@ -9,6 +9,7 @@ expect = expect.bind(this, 'scale', 'scale');
expect('initial').parsesAs('initial').isComputedTo('none');
expect('inherit').parsesAs('inherit');
+expect('none').parsesAs('none').isComputedTo('none');
expect('1').parsesAs('1').isComputedTo('1');
expect('1 -2.3').parsesAs('1 -2.3').isComputedTo('1 -2.3');
expect('1 -2.3 4').parsesAs('1 -2.3 4').isComputedTo('1 -2.3 4');

Powered by Google App Engine
This is Rietveld 408576698