summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/captured-mouse-events/captured-mouse-event-constructor.html
blob: e9cfe971c004098472723a494e91daaaa18012b4 (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
<!doctype html>
<meta charset=utf-8>
<link rel='help' href='https://screen-share.github.io/captured-mouse-events/#captured-mouse-change-event'>
<link rel='help' href='https://screen-share.github.io/captured-mouse-events/#captured-mouse-change-event-init'>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  // See https://webidl.spec.whatwg.org/#idl-long
  const maxLongValue = 2147483647;

  test(() => {
      assert_throws_js(TypeError, () => new CapturedMouseEvent());
  }, "type argument is mandatory");

  test(() => {
      [
          {surfaceX: -5, surfaceY: -5}, /* X, Y negative */
          {surfaceX: -5, surfaceY: +5}, /* X negative, Y non-negative */
          {surfaceX: +5, surfaceY: -5}, /* X non-negative, Y negative */
          {surfaceX: -1, surfaceY: +5}, /* X equal to -1, Y non-negative */
          {/* surfaceX: -1, */ surfaceY: +5}, /* Same with implicit surfaceX */
          {surfaceX: +5, surfaceY: -1}, /* X non-negative, Y equal to -1 */
          {surfaceX: +5 /*, surfaceY: -1 */}, /* Same with implicit surfaceY */
          {surfaceX: maxLongValue+1, surfaceY: +5}, /* 'long' overflow for X */
          {surfaceX: +5, surfaceY: maxLongValue+1}, /* 'long' overflow for Y */
      ].forEach(init => {
          assert_throws_js(RangeError, () => new CapturedMouseEvent("", init),
                          `eventInitDict=${JSON.stringify(init)}`);
      });
  }, "Invalid surfaceX/surfaceY options cause a RangeError to be thrown");

  test(() => {
      [
          {surfaceX: +5, surfaceY: +7}, /* Two positive values */
          {surfaceX: -1, surfaceY: -1}, /* Valid case with negative values  */
          {surfaceX: 0, surfaceY: 0}, /* Minimal non-negative values */
          {surfaceX: 0, surfaceY: 5}, /* Minimal non-negative X and positive Y */
          {surfaceX: 5, surfaceY: 0}, /* Positive X and minimal non-negative Y */
          {surfaceX: maxLongValue, surfaceY: maxLongValue}, /* Maximal values */
      ].forEach(init => {
          let event = new CapturedMouseEvent("", init);
          assert_equals(event.surfaceX, init.surfaceX,
                        `surfaceX with eventInitDict=${JSON.stringify(init)}`);
          assert_equals(event.surfaceY, init.surfaceY,
                        `surfaceY with eventInitDict=${JSON.stringify(init)}`);
     });
  }, "Valid surfaceX/surfaceY options are used as initial values");

  test(() => {
      let event = new CapturedMouseEvent("");
      assert_equals(event.surfaceX, -1,
                    `surfaceX with implicit eventInitDict={}`);
      assert_equals(event.surfaceY, -1,
                    `surfaceY with implicit eventInitDict={}`);

      [
          {},
          {surfaceX: -1},
          {surfaceY: -1},
      ].forEach(init => {
          let event = new CapturedMouseEvent("", init);
          assert_equals(event.surfaceX, -1,
                        `surfaceX with eventInitDict=${JSON.stringify(init)}`);
          assert_equals(event.surfaceY, -1,
                        `surfaceY with eventInitDict=${JSON.stringify(init)}`);
      });
  }, "surfaceX/surfaceY default to -1");
</script>