summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-typed-om/stylevalue-subclasses/cssRotate.tentative.html
blob: 6c234bc4724e70410a61e5f6397f6a3fa2d53be1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!doctype html>
<meta charset="utf-8">
<title>CSSRotate tests</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#cssrotate">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/testhelper.js"></script>
<script>
'use strict';

const gInvalidAngleTestCases = [
  { angle: CSS.number(10), desc: 'a CSSUnitValue with type other than angle'},
  { angle: new CSSMathSum(CSS.s(10)), desc: 'a CSSMathValue that doesn\'t match <angle>'},
];

const gInvalidCoordTestCases = [
  { coord: CSS.px(10), desc: 'a CSSUnitValue with type other than number'},
  { coord: new CSSMathSum(CSS.px(10)), desc: 'a CSSMathValue that doesn\'t match <number>'},
];

for (const {angle, desc} of gInvalidAngleTestCases) {
  test(() => {
    assert_throws_js(TypeError, () => new CSSRotate(angle));
    assert_throws_js(TypeError, () => new CSSRotate(0, 0, 0, angle));
  }, 'Constructing a CSSRotate with ' + desc + ' for the angle throws a TypeError');
}

for (const {coord, desc} of gInvalidCoordTestCases) {
  test(() => {
    assert_throws_js(TypeError, () => new CSSRotate(coord, 0, 0, CSS.deg(0)));
    assert_throws_js(TypeError, () => new CSSRotate(0, coord, 0, CSS.deg(0)));
    assert_throws_js(TypeError, () => new CSSRotate(0, 0, coord, CSS.deg(0)));
  }, 'Constructing a CSSRotate with ' + desc + ' for the coordinates throws a TypeError');
}

for (const attr of ['x', 'y', 'z']) {
  for (const {value, desc} of gInvalidCoordTestCases) {
    test(() => {
      let result = new CSSRotate(0, 0, 0, CSS.deg(0));
      assert_throws_js(TypeError, () => result[attr] = value);
      assert_style_value_equals(result[attr], CSS.number(0));
    }, 'Updating CSSRotate.' + attr + ' to ' + desc + ' throws a TypeError');
  }
}

for (const {angle, desc} of gInvalidAngleTestCases) {
  test(() => {
    let result = new CSSRotate(CSS.deg(0));
    assert_throws_js(TypeError, () => result.angle = angle);
    assert_style_value_equals(result.angle, CSS.deg(0));
  }, 'Updating CSSRotate.angle to ' + desc + ' throws a TypeError');
}

test(() => {
  const result = new CSSRotate(CSS.deg(3.14));
  assert_style_value_equals(result.x, CSS.number(0));
  assert_style_value_equals(result.y, CSS.number(0));
  assert_style_value_equals(result.z, CSS.number(1));
  assert_style_value_equals(result.angle, CSS.deg(3.14));
  assert_true(result.is2D);
}, 'CSSRotate can be constructed from a single angle');

test(() => {
  const result = new CSSRotate(-3.14, CSS.number(3.14), 3.14, CSS.deg(3.14));
  assert_style_value_equals(result.x, CSS.number(-3.14));
  assert_style_value_equals(result.y, CSS.number(3.14));
  assert_style_value_equals(result.z, CSS.number(3.14));
  assert_style_value_equals(result.angle, CSS.deg(3.14));
  assert_false(result.is2D);
}, 'CSSRotate can be constructed from numberish coordinates');

test(() => {
  const result = new CSSRotate(
    new CSSMathSum(-3.14),
    new CSSMathProduct(3.14),
    new CSSMathNegate(-3.14),
    new CSSMathMax(CSS.deg(3.14))
  );
  assert_style_value_equals(result.x, new CSSMathSum(-3.14));
  assert_style_value_equals(result.y, new CSSMathProduct(3.14));
  assert_style_value_equals(result.z, new CSSMathNegate(-3.14));
  assert_style_value_equals(result.angle, new CSSMathMax(CSS.deg(3.14)));
  assert_false(result.is2D);
}, 'CSSRotate can be constructed from CSSMathValues');

for (const attr of ['x', 'y', 'z']) {
  test(() => {
    let result = new CSSRotate(0, 0, 0, CSS.deg(0));
    result[attr] = 3.14;
    assert_style_value_equals(result[attr], CSS.number(3.14));
  }, 'CSSRotate.' + attr + ' can be updated to a double');

  test(() => {
    let result = new CSSRotate(0, 0, 0, CSS.deg(0));
    result[attr] = CSS.number(3.14);
    assert_style_value_equals(result[attr], CSS.number(3.14));
  }, 'CSSRotate.' + attr + ' can be updated to a number CSSUnitValue');

  test(() => {
    let result = new CSSRotate(0, 0, 0, CSS.deg(0));
    result[attr] = new CSSMathSum(3.14);
    assert_style_value_equals(result[attr], new CSSMathSum(3.14));
  }, 'CSSRotate.' + attr + ' can be updated to a CSSMathValue matching <number>');
}

test(() => {
  let rotation = new CSSRotate(CSS.deg(0));
  rotation.angle = CSS.deg(6);
  assert_style_value_equals(rotation.angle, CSS.deg(6));
}, 'CSSRotate.angle can be updated to a degree CSSUnitValue');

test(() => {
  let rotation = new CSSRotate(CSS.deg(0));
  rotation.angle = new CSSMathSum(CSS.deg(3.14));
  assert_style_value_equals(rotation.angle, new CSSMathSum(CSS.deg(3.14)));
}, 'CSSRotate.angle can be updated to a CSSMathValue matching <angle>');

test(() => {
  let rotation = new CSSRotate(CSS.deg(0));
  rotation.is2D = true;
  assert_true(rotation.is2D);
  rotation.is2D = false;
  assert_false(rotation.is2D);
}, 'Modifying CSSRotate.is2D can be updated to true or false');

</script>