Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/interactive-elements/the-details-element/details-findstring-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<script>
window.onload = () => {
window.getSelection().selectAllChildren(document.body);
document.querySelector('object').remove();
document.execCommand('FindString',false,0);
};
</script>
<details>
<object id='id6'></object>
</details>