summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/delegated-ink/exception-thrown-bad-color.tentative.html
blob: 54c28efb5c1c28a0d448dd4084bb5ccb2a24aacf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>

<canvas id="canvas"></canvas>
<script>
  promise_test(async (t) => {
    const presenter = await navigator.ink.requestPresenter({presentationArea: canvas});
    const style = { color: "bad-color", diameter: 6 };

    canvas.addEventListener("pointermove", evt => {
      assert_throws_js(TypeError, function() {
        presenter.updateInkTrailStartPoint(evt, style);
      }, "Expected a TypeError to be thrown due to bad color.");
    });

    const actions_promise = new test_driver.Actions().pointerMove(10,10).send();
    t.add_cleanup(() => actions_promise);
  });
</script>