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

16 lines
240 B
HTML
Raw Normal View History

2019-03-11 10:26:37 +00:00
<!DOCTYPE html>
<html>
<head>
<body style="white-space:pre"> BC
FG
JK
<script>
document.body.offsetTop;
var t = document.body.firstChild;
var sel = window.getSelection();
sel.collapse(t, 6);
sel.extend(t, 8);
</script>
</body>
</html>