blob: 819fd7c9faac8a88e9c2d3e2ebca896f3680c8f2 [file] [log] [blame]
<!DOCTYPE html>
<head>
<title>This tests that selection stays on when part of the selection gets removed.</title>
</head>
<body>
This should still be selected.
<script>
var range = document.createRange();
range.selectNode(document.body);
window.getSelection().addRange(range);
</script>
</body>
</html>