tenfourfox/layout/reftests/selection/extend-1-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

14 lines
236 B
HTML

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