summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/close-watcher/closewatcher-dialog-popover.html
blob: 50d5cb7a4ca9425838f07d1ec916bb60e704b23a (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
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://github.com/whatwg/html/pull/9462">
<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 src="/common/top-layer.js"></script>
<script src="resources/helpers.js"></script>

<button id=b0>button</button>

<dialog id=dialog>
  <button id=b1>button</button>
  <div id=popover popover=auto>popover</div>
</dialog>

<script>
const waitForPotentialCloseEvent = () => {
  // CloseWatchers fire close events synchronously, but dialog elements wait
  // for a rAF before firing them.
  return new Promise(resolve => requestAnimationFrame(resolve));
};

promise_test(async t => {
  const events = [];
  const closeWatcher = createRecordingCloseWatcher(t, events, 'CloseWatcher', 'CloseWatcher');
  const dialog = createRecordingCloseWatcher(t, events, 'dialog', 'dialog');
  const popover = createRecordingCloseWatcher(t, events, 'popover', 'popover');
  assert_true(dialog.hasAttribute('open'), 'The dialog should be open.');
  assert_true(popover.matches(':popover-open'), 'The popover should be open.');

  await sendCloseRequest();
  await waitForPotentialCloseEvent();

  assert_false(popover.matches(':popover-open'), 'The popover should be closed.');
  assert_false(dialog.hasAttribute('open'), 'The dialog should be closed.');
  assert_array_equals(events, ['CloseWatcher close', 'dialog close']);
}, 'Opening a CloseWatcher, modal dialog, and popover without user activation causes them all to be closed with one close request.');

promise_test(async t => {
  const events = [];
  const closeWatcher = await createBlessedRecordingCloseWatcher(t, events, 'CloseWatcher', 'CloseWatcher');
  const dialog = await createBlessedRecordingCloseWatcher(t, events, 'dialog', 'dialog');
  const popover = await createBlessedRecordingCloseWatcher(t, events, 'popover', 'popover', dialog);
  assert_true(dialog.hasAttribute('open'), 'The dialog should be open.');
  assert_true(popover.matches(':popover-open'), 'The popover should be open.');

  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'First close request: The popover should be closed.');
  assert_true(dialog.hasAttribute('open'), 'First close request: The dialog should be open.');
  assert_array_equals(events, []);

  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'Second close request: The popover should be closed.');
  assert_false(dialog.hasAttribute('open'), 'Second close request: The dialog should be closed.');
  assert_array_equals(events, ['dialog close']);

  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'Third close request: The popover should be closed.');
  assert_false(dialog.hasAttribute('open'), 'Third close request: The dialog should be closed.');
  assert_array_equals(events, ['dialog close', 'CloseWatcher close']);
}, 'Opening a CloseWatcher, modal dialog, and popover with user activation for each should close one at a time with close requests.');

promise_test(async t => {
  const events = [];
  const closeWatcher = await createBlessedRecordingCloseWatcher(t, events, 'CloseWatcher', 'CloseWatcher');
  const dialog = await createBlessedRecordingCloseWatcher(t, events, 'dialog', 'dialog');
  const popover = await createBlessedRecordingCloseWatcher(t, events, 'popover', 'popover', dialog);
  assert_true(dialog.hasAttribute('open'), 'The dialog should be open.');
  assert_true(popover.matches(':popover-open'), 'The popover should be open.');

  await blessTopLayer(popover);
  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'First close request: The popover should be closed.');
  assert_true(dialog.hasAttribute('open'), 'First close request: The dialog should be open.');
  assert_array_equals(events, []);

  await blessTopLayer(dialog);
  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'Second close request: The popover should be closed.');
  assert_false(dialog.hasAttribute('open'), 'Second close request: The dialog should be closed.');
  assert_array_equals(events, ['dialog cancel', 'dialog close']);

  await test_driver.bless();
  await sendCloseRequest();
  await waitForPotentialCloseEvent();
  assert_false(popover.matches(':popover-open'), 'Third close request: The popover should be closed.');
  assert_false(dialog.hasAttribute('open'), 'Third close request: The dialog should be closed.');
  assert_array_equals(events, ['dialog cancel', 'dialog close', 'CloseWatcher cancel', 'CloseWatcher close']);
}, 'Opening a CloseWatcher, modal dialog, and popover with user activation for each and sending close requests with user activation should close one at a time and have cancel events.');
</script>