summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/interaction/focus/focused-element-move-documents-crash.html
blob: ca9ab26edd787a02a585593d2a1501ba507d39ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<link rel="author" title="Joey Arhar" href="mailto:jarhar@chromium.org">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1172828">

<!-- No crash should occur if a focused element is moved to another document. -->

<div id=editable contenteditable=>

<script>
editable.addEventListener('blur', function() {
  document.execCommand('InsertText', false, '\t');
});
editable.focus();
const secondDoc = document.implementation.createDocument('', null);
secondDoc.appendChild(editable);
</script>