-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1878797 [wpt PR 44408] - Close the dialog element when the open a…
…ttribute is removed, a=testonly Automatic update from web-platform-tests Close the dialog element when the open attribute is removed This patch adds HTMLDialogElement::ParseAttribute which runs HTMLDialogElement::close when the open attribute is removed to prevent a bad state where the dialog is modal but hidden and inerting the rest of the document. Spec discussion is happening here: whatwg/html#5802 Change-Id: Ib90736ced952d7aeadc791c6863c3ac2a55deb62 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5269905 Reviewed-by: David Baron <[email protected]> Commit-Queue: Joey Arhar <[email protected]> Cr-Commit-Position: refs/heads/main@{#1258629} -- wpt-commits: c0538d5500ef425b051f7dcb37772af5025324d0 wpt-pr: 44408
- Loading branch information
1 parent
048a827
commit 22ba6b6
Showing
2 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
...ts/html/semantics/interactive-elements/the-dialog-element/dialog-close-via-attribute.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<link rel=author href="mailto:[email protected]"> | ||
<link rel=help href="https://github.com/whatwg/html/issues/5802"> | ||
<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> | ||
|
||
<button>button</button> | ||
<dialog>hello world</dialog> | ||
|
||
<script> | ||
const dialog = document.querySelector('dialog'); | ||
const button = document.querySelector('button'); | ||
|
||
promise_test(async t => { | ||
dialog.showModal(); | ||
|
||
let closeFired = false; | ||
let cancelFired = false; | ||
dialog.addEventListener('close', () => closeFired = true); | ||
dialog.addEventListener('cancel', () => cancelFired = true); | ||
|
||
dialog.removeAttribute('open'); | ||
await new Promise(resolve => t.step_timeout(resolve, 0)); | ||
await new Promise(requestAnimationFrame); | ||
|
||
assert_false(dialog.matches(':modal'), | ||
'The dialog should not match :modal after closing.'); | ||
assert_false(cancelFired, | ||
'The cancel event should not fire when removing the open attribute.'); | ||
assert_true(closeFired, | ||
'The close event should be fired when removing the open attribute.'); | ||
|
||
let buttonFiredClick = false; | ||
button.addEventListener('click', () => buttonFiredClick = true); | ||
await test_driver.click(button); | ||
assert_true(buttonFiredClick, | ||
'The page should not be inert or blocked after removing the open attribute.'); | ||
}, 'Removing the open attribute from an open modal dialog should run the closing algorithm.'); | ||
|
||
promise_test(async t => { | ||
dialog.show(); | ||
|
||
let closeFired = false; | ||
let cancelFired = false; | ||
dialog.addEventListener('close', () => closeFired = true); | ||
dialog.addEventListener('cancel', () => cancelFired = true); | ||
|
||
dialog.removeAttribute('open'); | ||
await new Promise(resolve => t.step_timeout(resolve, 0)); | ||
await new Promise(requestAnimationFrame); | ||
|
||
assert_false(cancelFired, | ||
'The cancel event should not fire when removing the open attribute.'); | ||
assert_true(closeFired, | ||
'The close event should be fired when removing the open attribute.'); | ||
}, 'Removing the open attribute from an open non-modal dialog should fire a close event.'); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters