Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<meta charset="utf-8">
<title>The container node of the dialog element should be connected to a document.</title>
<link rel="author" title="Peng Zhou" href="mailto:zhoupeng.1996@bytedance.com">
<!-- This test passes if it does not crash. -->
<div id="target"></div>
<dialog open>Dialog</dialog>
<script>
const dialog = document.querySelector('dialog');
const node = document.createElement('div');
node.appendChild(dialog);
document.getElementById('target').appendChild(node);
</script>