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

Side by Side Diff: LayoutTests/animations/interpolation/display-interpolation.html

Issue 1153943003: Add foundation for removing AnimatableValues from StyleInterpolation (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review changes Created 5 years, 6 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/display-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: block;
6 }
7 </style>
8 <body>
9 <script src="resources/interpolation-test.js"></script>
10 <script>
11 assertInterpolation({
12 property: 'display',
13 from: 'none',
14 to: 'flex',
15 method: 'CSS Animations',
16 }, [
17 {at: -0.3, is: 'block'},
18 {at: 0, is: 'block'},
19 {at: 0.3, is: 'block'},
20 {at: 0.6, is: 'block'},
21 {at: 1, is: 'block'},
22 {at: 1.5, is: 'block'},
23 ]);
24 assertNoInterpolation({
25 property: 'display',
26 from: 'none',
27 to: 'flex',
28 method: 'Web Animations',
29 });
30 </script>
31 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/animations/interpolation/display-interpolation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698