Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/nodes/moveBefore/chrome-433696404-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/433696404">
<p>Passes if no crash</p>
<div id="host">
<template shadowrootmode="open">
<div><div style="display: none;"><slot></slot></div></div>
</template>
</div>
<span id="span">Text in light DOM</span>
<script>
span.offsetTop;
host.moveBefore(span, null);
span.offsetTop;
</script>