-
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 1769966 [wpt PR 34107] - Clean up modal dialog tests and split ou…
…t :modal pseudo-class test, a=testonly Automatic update from web-platform-tests Clean up modal dialog tests and split out :modal pseudo-class test (#34107) Closes web-platform-tests/interop#79 -- wpt-commits: f4e735e4245973ad955ecadab644b71a3d4533df wpt-pr: 34107
- Loading branch information
1 parent
9691cc1
commit 18dd749
Showing
4 changed files
with
54 additions
and
38 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
testing/web-platform/tests/css/selectors/modal-pseudo-class.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,38 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"/> | ||
<title>:modal pseudo-class</title> | ||
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m"> | ||
<link rel="help" href="https://drafts.csswg.org/selectors/#modal-state"> | ||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
|
||
<dialog id="dialog">Just another dialog.</dialog> | ||
|
||
<script> | ||
setup({ single_test: true }); | ||
|
||
const dialog = document.getElementById("dialog"); | ||
assert_false(dialog.matches(":modal"), "dialog is initially closed (does not match :modal)"); | ||
|
||
dialog.showModal(); | ||
assert_true(dialog.matches(":modal"), "dialog should match :modal after showModal() call"); | ||
|
||
dialog.close(); | ||
assert_false(dialog.matches(":modal"), "dialog should no longer match :modal after close() call"); | ||
|
||
dialog.show(); | ||
assert_false(dialog.matches(":modal"), "dialog shouldn't match :modal after show() call"); | ||
|
||
dialog.close(); | ||
dialog.showModal(); | ||
assert_true(dialog.matches(":modal"), "dialog should match :modal after showModal() call"); | ||
|
||
dialog.remove(); | ||
assert_false(dialog.matches(":modal"), "dialog shouldn't match :modal after being removed from document"); | ||
document.body.append(dialog); | ||
assert_false(dialog.matches(":modal"), "dialog shouldn't match :modal after being re-appended to document"); | ||
|
||
dialog.close(); | ||
|
||
done(); | ||
</script> |
38 changes: 0 additions & 38 deletions
38
...tform/tests/html/semantics/interactive-elements/the-dialog-element/dialog-show-modal.html
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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