Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/slot-content-visibility-21-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<script>
const selection = window.getSelection();
document.execCommand("SelectAll");
document.documentElement.innerHTML = '<map><rt></rt><b></b></map><article>foo</article><details></details>';
const range = selection.getRangeAt(0);
const details = document.querySelector('details');
range.insertNode(details)
selection.modify('extend', 'forward', 'paragraph')
selection.collapseToEnd()
</script>