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

Side by Side Diff: LayoutTests/animations/interpolation/webkit-text-fill-color-interpolation.html

Issue 23882010: CSS Animations: add interpolation test for webkit-text-fill-color (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/webkit-text-fill-color-interpolation-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="UTF-8">
3 <style>
4 .target {
5 display: inline-block;
6 font: 60pt sans-serif;
7 }
8 .replica {
9 margin-right: 15px;
10 }
11 </style>
12 <body>
13 <template id="target-template">T</template>
14 <script src="resources/interpolation-test.js"></script>
15 <script>
16 assertInterpolation({
17 property: '-webkit-text-fill-color',
18 from: 'black',
19 to: 'orange'
20 }, [
21 {at: -0.3, is: 'black'},
22 {at: 0, is: 'black'},
23 {at: 0.3, is: 'rgb(77, 50, 0)'},
24 {at: 0.6, is: 'rgb(153, 99, 0)'},
25 {at: 1, is: 'orange'},
26 {at: 1.5, is: 'rgb(255, 248, 0)'},
27 ]);
28 </script>
29 </body
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/webkit-text-fill-color-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698