mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 02:25:34 +00:00
fdab22f79c
MozReview-Commit-ID: FRzdvTLMAID
14 lines
375 B
HTML
14 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
document.documentElement.scrollTop = "500";
|
|
o1 = document.createRange();
|
|
o2 = document.createElement('input');
|
|
o1.selectNode(document.documentElement);
|
|
o1.surroundContents(o2);
|
|
o2.selectionStart;
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html> |