Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / animations / interpolation / non-animatable-interpolation.html
1 <!DOCTYPE html>
2 <meta charset="UTF-8">
3 <style>
4 .replica { color: green; }
5 </style>
6 <body>
7 <script src="resources/interpolation-test.js"></script>
8 <template id="target-template">float</template>
9 <script>
10 disableWebAnimationsTest();
11
12 // CSS Animations and Transitions should not affect non-animatable properties.
13 assertInterpolation({
14   property: 'float',
15   from: 'left',
16   to: 'right'
17 }, [
18   {at: -0.3, is: 'none'},
19   {at: 0, is: 'none'},
20   {at: 0.3, is: 'none'},
21   {at: 0.6, is: 'none'},
22   {at: 1, is: 'none'},
23   {at: 1.5, is: 'none'},
24 ]);
25 </script>
26 </body>