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

Unified Diff: LayoutTests/animations/interpolation/transform-origin-interpolation.html

Issue 212483003: CSS Transforms: Implement transform-origin (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 6 years, 9 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
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/transform-origin-interpolation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/interpolation/transform-origin-interpolation.html
diff --git a/LayoutTests/animations/interpolation/transform-origin-interpolation.html b/LayoutTests/animations/interpolation/transform-origin-interpolation.html
index 81dd941d390908b65db4da1dd6d916f300d8691c..c680f5777c72dcea6810e3ae382aa98e8df09445 100644
--- a/LayoutTests/animations/interpolation/transform-origin-interpolation.html
+++ b/LayoutTests/animations/interpolation/transform-origin-interpolation.html
@@ -21,16 +21,16 @@
<script src="resources/interpolation-test.js"></script>
<script>
assertInterpolation({
- property: '-webkit-transform-origin',
- from: '0% 50%',
- to: '100% 150%'
+ property: 'transform-origin',
+ from: '0% 50% 5px',
+ to: '100% 150% 0px'
}, [
- {at: -0.3, is: '-30% 20%'},
- {at: 0, is: '0% 50%'},
- {at: 0.3, is: '30% 80%'},
- {at: 0.6, is: '60% 110%'},
- {at: 1, is: '100% 150%'},
- {at: 1.5, is: '150% 200%'}
+ {at: -0.3, is: '-30% 20% 6.5px'},
+ {at: 0, is: '0% 50% 5px'},
+ {at: 0.3, is: '30% 80% 3.5px'},
+ {at: 0.6, is: '60% 110% 2px'},
+ {at: 1, is: '100% 150% 0px'},
+ {at: 1.5, is: '150% 200% -2.5px'}
]);
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/transform-origin-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698