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

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

Issue 1484223002: Move transform-origin property into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Patch for landing Created 5 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/transforms/transform-origin-parsing.html
diff --git a/third_party/WebKit/LayoutTests/transforms/transform-origin-parsing.html b/third_party/WebKit/LayoutTests/transforms/transform-origin-parsing.html
index 39018d2ec4fc57c8b2fdb7f840011bcc343bbe49..ce317532ecd413bc3e53cce4d547a2996d26ab15 100644
--- a/third_party/WebKit/LayoutTests/transforms/transform-origin-parsing.html
+++ b/third_party/WebKit/LayoutTests/transforms/transform-origin-parsing.html
@@ -9,14 +9,14 @@ expect = expect.bind(this, 'transform-origin', 'transformOrigin');
expect('initial').parsesAs('initial').isComputedTo('100px 50px');
expect('inherit').parsesAs('inherit');
-expect('left').parsesAs('left 50% 0px').isComputedTo('0px 50px');
-expect('center').parsesAs('center 50% 0px').isComputedTo('100px 50px');
-expect('right').parsesAs('right 50% 0px').isComputedTo('200px 50px');
-expect('top').parsesAs('50% top 0px');
-expect('bottom').parsesAs('50% bottom 0px');
-expect('0').parsesAs('0px 50% 0px');
-expect('10%').parsesAs('10% 50% 0px').isComputedTo('20px 50px');
-expect('10px').parsesAs('10px 50% 0px').isComputedTo('10px 50px');
+expect('left').parsesAs('left center 0px').isComputedTo('0px 50px');
+expect('center').parsesAs('center center 0px').isComputedTo('100px 50px');
+expect('right').parsesAs('right center 0px').isComputedTo('200px 50px');
+expect('top').parsesAs('center top 0px');
+expect('bottom').parsesAs('center bottom 0px');
+expect('0').parsesAs('0px center 0px');
+expect('10%').parsesAs('10% center 0px').isComputedTo('20px 50px');
+expect('10px').parsesAs('10px center 0px').isComputedTo('10px 50px');
expect('left top').parsesAs('left top 0px');
expect('right bottom').parsesAs('right bottom 0px');
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/parser/CSSPropertyParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698