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

Side by Side Diff: LayoutTests/animations/interpolation/position-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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="UTF-8">
3 <style>
4 .container {
5 position: relative;
6 display: inline-block;
7 height: 10px;
8 margin: 0px;
9 }
10 .target {
11 width: 10px;
12 height: 10px;
13 background-color: black;
14 left: 10px;
15 }
16 .expected {
17 background-color: green;
18 }
19 </style>
20 <template id="target-template">
21 <div class="container">
22 <div class="target"></div>
23 </div>
24 </template>
25 <body>
26 <script src="resources/interpolation-test.js"></script>
27 <script>
28 assertNoInterpolation({
29 method: 'Web Animations',
30 property: 'position',
31 from: 'absolute',
32 to: 'static'
33 });
34 </script>
35 </body>
OLDNEW
« no previous file with comments | « LayoutTests/animations/interpolation/display-interpolation-expected.txt ('k') | Source/core/animation/AnimationType.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698