summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/selection/selection-select-all-move-input-crash.html
blob: 6f692dc5e7d69a30a407f107268c9e012efcd9e3 (plain)
1
2
3
4
5
6
7
8
9
10
<script>
  function start() {
    document.execCommand('selectAll', false)
    document.documentElement.appendChild(document.getElementById('input'))
  }
</script>
<body onload="start()">
<input id="input" autofocus>
<canvas contenteditable="true" hidden></canvas>
</body>