summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/style/test_transform-non-normalizable-rotate3d.html
blob: ad2584ac40fdf22e48be664a45516ab61a21f8eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<meta charset=utf-8>
<script src='/resources/testharness.js'></script>
<script src='/resources/testharnessreport.js'></script>
<script src='../testcommon.js'></script>
<div id='log'></div>
<script type='text/javascript'>
'use strict';

test(function(t) {
  var target = addDiv(t);
  target.style.transform = 'rotate3d(0, 0, 1, 90deg)';
  target.style.transition = 'all 10s linear -5s';
  getComputedStyle(target).transform;

  target.style.transform = 'rotate3d(0, 0, 0, 270deg)';
  var interpolated_matrix = 'matrix(' + Math.cos(Math.PI / 4) + ',' +
                                        Math.sin(Math.PI / 4) + ',' +
                                       -Math.sin(Math.PI / 4) + ',' +
                                        Math.cos(Math.PI / 4) + ',' +
                                        '0, 0)';
  assert_matrix_equals(getComputedStyle(target).transform, interpolated_matrix,
                       'transition from a normal rotate3d to a ' +
                       'non-normalizable rotate3d');
}, 'Test interpolation on non-normalizable rotate3d function');

</script>
</html>