blob: c7bd075f23d5d95b58f401ae070e18c78b362933 (
plain)
1
2
3
4
5
6
7
8
|
<script>
function go() {
window.getSelection().selectAllChildren(document.body.firstChild);
document.createElement("body").aLink = "-moz-mac-menuselect";
window.getSelection().getRangeAt(0).getClientRects();
}
</script>
<body onload=go()>
|