Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/parts/document-element-attribute-part-crash.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<head>
<title>DOM Parts: Attribute part on documentElement crash test</title>
<link rel=author href="mailto:vmpstr@chromium.org">
</head>
<div></div>
<script>
function runTest() {
try {
new AttributePart(document.getPartRoot(), document.documentElement, "", {});
} catch (e) {}
}
onload = requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>