OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="resources/responsive-test.js"></script> | 2 <script src="resources/responsive-test.js"></script> |
3 <script> | 3 <script> |
4 // When the parent's offset-rotate changes during an animation, we respond. | 4 // When the parent's offset-rotate changes during an animation, we respond. |
5 assertCSSResponsive({ | 5 assertCSSResponsive({ |
6 property: 'offset-rotate', | 6 property: 'offset-rotate', |
7 from: 'inherit', | 7 from: 'inherit', |
8 to: 'auto 40deg', | 8 to: 'auto 40deg', |
9 configurations: [{ | 9 configurations: [{ |
10 state: {inherited: '50deg'}, | 10 state: {inherited: '50deg'}, |
(...skipping 23 matching lines...) Expand all Loading... |
34 ], | 34 ], |
35 }, { | 35 }, { |
36 state: {underlying: '40deg'}, | 36 state: {underlying: '40deg'}, |
37 expect: [ | 37 expect: [ |
38 {at: 0.25, is: '50deg'}, | 38 {at: 0.25, is: '50deg'}, |
39 {at: 0.75, is: '70deg'}, | 39 {at: 0.75, is: '70deg'}, |
40 ], | 40 ], |
41 }], | 41 }], |
42 }); | 42 }); |
43 </script> | 43 </script> |
OLD | NEW |