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

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

Issue 24021003: CSS Animations: add interpolation test for webkit-text-stroke-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-stroke-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 -webkit-text-stroke: 3px black;
8 -webkit-text-fill-color: white;
9 }
10 .replica {
11 margin-right: 15px;
12 }
13 </style>
14 <body>
15 <template id="target-template">T</template>
16 <script src="resources/interpolation-test.js"></script>
17 <script>
18 assertInterpolation({
19 property: '-webkit-text-stroke-color',
20 from: 'black',
21 to: 'orange'
22 }, [
23 {at: -0.3, is: 'black'},
24 {at: 0, is: 'black'},
25 {at: 0.3, is: 'rgb(77, 50, 0)'},
26 {at: 0.6, is: 'rgb(153, 99, 0)'},
27 {at: 1, is: 'orange'},
28 {at: 1.5, is: 'rgb(255, 248, 0)'},
29 ]);
30 </script>
31 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/webkit-text-stroke-color-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698