Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /close-watcher/user-activation/y-popover-disconnected.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=author href="mailto:wpt@keithcirkel.co.uk">
<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="../resources/helpers.js"></script>
<button id=b0>b0</button>
<div id=p1 popover=auto>
<button id=b1>b1</button>
<div id=p2 popover=auto>p2</div>
</div>
<script>
promise_test(async () => {
const p1 = document.getElementById('p1');
const p2 = document.getElementById('p2');
await test_driver.click(b0);
p1.showPopover();
await test_driver.click(b1);
p2.showPopover();
assert_true(p1.matches(':popover-open'), 'p1 should be open.');
assert_true(p2.matches(':popover-open'), 'p2 should be open.');
p2.remove()
assert_false(p2.matches(':popover-open'), 'p2 should now be closed.');
await sendCloseRequest();
assert_false(p2.matches(':popover-open'), 'p2 still now be closed.');
assert_false(p1.matches(':popover-open'), 'p1 should now be closed.');
await sendCloseRequest();
assert_false(p2.matches(':popover-open'), 'p2 still now be closed.');
assert_false(p1.matches(':popover-open'), 'p1 still now be closed.');
}, 'Disconnect popover with close request');
</script>