Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /html/semantics/embedded-content/the-iframe-element/hittest-detached-iframe-crash.html - WPT Dashboard Interop Dashboard
 
<!DOCTYPE html>
<script>
function test() {
  document.body.offsetHeight;
  document.body.attachShadow({mode: 'closed'});
  iframe.contentDocument.caretRangeFromPoint(0, 0);
}
</script>
<iframe id="iframe" onload="test()"></iframe>