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

Unified Diff: LayoutTests/animations/interpolation/font-size-zoom-interpolation.html

Issue 721773002: Build animated font properties through FontBuilder. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 6 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/font-size-zoom-interpolation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/animations/interpolation/font-size-zoom-interpolation.html
diff --git a/LayoutTests/animations/interpolation/font-size-interpolation.html b/LayoutTests/animations/interpolation/font-size-zoom-interpolation.html
similarity index 56%
copy from LayoutTests/animations/interpolation/font-size-interpolation.html
copy to LayoutTests/animations/interpolation/font-size-zoom-interpolation.html
index 3135caf99f4343b0773a9dd9b92b208dd2d1a6a1..2e8b866244c9e1f45e78484a6f6cb24f3efd942e 100644
--- a/LayoutTests/animations/interpolation/font-size-interpolation.html
+++ b/LayoutTests/animations/interpolation/font-size-zoom-interpolation.html
@@ -1,12 +1,10 @@
<!DOCTYPE html>
-<meta charset="UTF-8">
<style>
.container {
- font-size: 10px;
+ zoom: 2;
}
.target {
display: inline-block;
- font: 100px sans-serif;
}
.replica {
color: green;
@@ -23,23 +21,10 @@
<script>
assertInterpolation({
property: 'font-size',
- from: '4px',
dstockwell 2014/11/12 22:41:11 I don't understand the changes to this test. It's
andersr 2014/11/13 00:30:19 You're seeing creative diffing between a new test
- to: '14px'
-}, [
- {at: -2, is: '0px'}, // CSS font-size can't be negative.
- {at: -0.3, is: '1px'},
- {at: 0, is: '4px'},
- {at: 0.3, is: '7px'},
- {at: 0.6, is: '10px'},
- {at: 1, is: '14px'},
- {at: 1.5, is: '19px'},
-]);
-assertInterpolation({
- property: 'font-size',
- from: 'inherit',
+ from: '10px',
to: '20px'
}, [
- {at: -2, is: '0px'}, // CSS font-size can't be negative.
+ {at: -2, is: '0px'},
{at: -0.3, is: '7px'},
{at: 0, is: '10px'},
{at: 0.3, is: '13px'},
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/font-size-zoom-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698