blob: fdb1a75ea1eff758560b3b1308ba31bb99995632 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
document.setUserData('key', {}, null);
// Depending on the pref bidi.direction, one of these will hit the page scrollbar.
window.cpRight = document.caretPositionFromPoint(window.innerWidth - 1, 0);
window.cpLeft = document.caretPositionFromPoint(0, 0);
}
</script>
</head>
<body onload="boom();">
<div style="height: 50000px;"></div>
</body>
</html>
|