Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<link rel="author" href="mailto:wpt@keithcirkel.co.uk" />
<!-- This test passes if it does not crash. -->
<script>
const doc = document.implementation.createHTMLDocument("");
const dialog = doc.createElement("dialog");
doc.body.append(dialog);
dialog.setAttribute("open", "");
dialog.requestClose();
</script>