gecko/layout/reftests/selection/dynamic-text-1-ref.html

15 lines
215 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<body style="white-space:pre">ABCD
EFGH
IJKL
<script>
var t = document.body.firstChild;
var sel = window.getSelection();
sel.collapse(t, 6);
sel.extend(t, 8);
</script>
</body>
</html>