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

Unified Diff: LayoutTests/animations/interpolation/line-height-interpolation.html

Issue 90113003: Web Animations CSS: Fix crash when animating viewport units (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Preserve legacy viewport unit blend behaviour Created 7 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
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/line-height-interpolation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/interpolation/line-height-interpolation.html
diff --git a/LayoutTests/animations/interpolation/line-height-interpolation.html b/LayoutTests/animations/interpolation/line-height-interpolation.html
index f29fb946fe579f485ea3e1c6579640701cfbd84d..039b78b3da90781f5a4ca679ac34fc3c9e335d35 100644
--- a/LayoutTests/animations/interpolation/line-height-interpolation.html
+++ b/LayoutTests/animations/interpolation/line-height-interpolation.html
@@ -128,5 +128,54 @@ assertInterpolation({
{at: 1, is: '4'},
{at: 1.5, is: '4'},
]);
+assertInterpolation({
+ property: 'line-height',
+ from: '4vw',
+ to: '14vw'
+}, [
+ {at: -1, is: '0'},
+ {at: -0.3, is: '1vw'},
+ {at: 0, is: '4vw'},
+ {at: 0.3, is: '7vw'},
+ {at: 0.6, is: '10vw'},
+ {at: 1, is: '14vw'},
+ {at: 1.5, is: '19vw'},
+]);
+assertInterpolation({
+ property: 'line-height',
+ from: '50vmin',
+ to: '100px'
+}, [
+ {at: -0.25, is: '50vmin'},
+ {at: 0, is: '50vmin'},
+ {at: 0.25, is: '50vmin'},
+ {at: 0.75, is: '100px'},
+ {at: 1, is: '100px'},
+ {at: 1.5, is: '100px'},
+]);
+assertInterpolation({
+ property: 'line-height',
+ from: '100px',
+ to: '50vmax'
+}, [
+ {at: -0.25, is: '100px'},
dstockwell 2013/11/27 09:27:34 This seems to suggest that stepping is the correct
alancutter (OOO until 2018) 2013/11/27 23:31:52 Done.
+ {at: 0, is: '100px'},
+ {at: 0.25, is: '100px'},
+ {at: 0.75, is: '50vmax'},
+ {at: 1, is: '50vmax'},
+ {at: 1.5, is: '50vmax'},
+]);
+assertInterpolation({
+ property: 'line-height',
+ from: '50vw',
+ to: '100vh'
+}, [
+ {at: -0.25, is: '50vw'},
+ {at: 0, is: '50vw'},
+ {at: 0.25, is: '50vw'},
+ {at: 0.75, is: '100vh'},
+ {at: 1, is: '100vh'},
+ {at: 1.5, is: '100vh'},
+]);
</script>
</body>
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/line-height-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698