forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean up modal dialog tests and split out :modal pseudo-class test
- Loading branch information
Showing
4 changed files
with
50 additions
and
38 deletions.
There are no files selected for viewing
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,34 @@ | ||
<!DOCTYPE html> | ||
<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"> | ||
|
||
<dialog id="dialog">Just another dialog.</dialog> | ||
|
||
<script src="/resources/testharness.js"></script> | ||
<script src="/resources/testharnessreport.js"></script> | ||
<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(); | ||
</script> |
38 changes: 0 additions & 38 deletions
38
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