Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-anchor-position/iframe-anchor-name-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1998438">
<style>
* {
anchor-name: --anchor-name_0;
}
</style>
<script>
window.addEventListener("load", async () => {
const iframe = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe")
document.documentElement.appendChild(iframe)
})
</script>