summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-dialog-element/modal-dialog-selection.html
blob: 0242080268fd435ca52908a8afe08a8607bdb76a (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" />
<title>Content selection in modal dialog</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-ui-4/#content-selection">
<meta name="assert" content="Checks that text can be selected in a modal dialog, except with 'user-select: none'.">

<link rel="stylesheet" href="/fonts/ahem.css">
<style>
dialog {
  font: 10px/1 Ahem;
  text-align: center;
}
</style>

<dialog>123456789A</dialog>

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script>
const dialog = document.querySelector("dialog");
dialog.showModal();

function selectSomeText() {
  // Clear existing selection.
  getSelection().removeAllRanges();

  // The dialog contains 10 characters. Select the 6 ones at the center.
  return new test_driver.Actions()
    .pointerMove(-3e1, 0, {origin: dialog})
    .pointerDown()
    .pointerMove(+3e1, 0, {origin: dialog})
    .pointerUp()
    .send();
}

function clickOnBackdrop() {
  getSelection().removeAllRanges();

  return new test_driver.Actions()
    .pointerMove(10, 10)
    .pointerDown()
    .pointerUp()
    .send();
}

promise_test(async function() {
  await selectSomeText();
  assert_equals(getSelection().toString(), "345678");
}, "By default, text inside a modal dialog can be selected");

promise_test(async function() {
  await clickOnBackdrop();
  assert_equals(getSelection().toString(), "");
}, "Clicking on backdrop doesn't select text");

promise_test(async function() {
  dialog.style.userSelect = "none";

  await selectSomeText();
  assert_equals(getSelection().toString(), "");

  dialog.style.userSelect = "";
}, "'user-select: none' prevents text from being selected");
</script>