summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-details-element/details-findstring-crash.html
blob: dc8686b216106cacacbda36db3895339e2aa55e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<link rel=author href="mailto:jarhar@chromium.org">
<link rel=help href="https://bugs.chromium.org/p/chromium/issues/detail?id=1264507">

<script>
window.onload = () => {
  window.getSelection().selectAllChildren(document.body);
  document.querySelector('object').remove();
  document.execCommand('FindString',false,0);
};
</script>

<details>
  <object id='id6'></object>
</details>