summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/delegated-ink/delete-presentation-area.html
blob: 2408c7eeaf568858a0f6ead7094ec6f05ebd76f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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: "green", diameter: 6 };

      window.addEventListener("pointermove", evt => {
        presenter.updateInkTrailStartPoint(evt, style);
      });
      document.body.removeChild(canvas);
      const actions_promise = new test_driver.Actions().pointerMove(10, 10).send();
      t.add_cleanup(() => actions_promise);
    }, "No crash when accessing presenter associated with deleted presentation area.");
</script>