зеркало из https://github.com/mozilla/gecko-dev.git
11 строки
245 B
HTML
11 строки
245 B
HTML
|
<script>
|
||
|
function go() {
|
||
|
var b = window.getSelection();
|
||
|
var c = document.getSelection();
|
||
|
b.setBaseAndExtent(document.getElementById("a"), 0, document.body.firstChild, 1);
|
||
|
c.deleteFromDocument();
|
||
|
}
|
||
|
</script>
|
||
|
<body onload=go()>
|
||
|
<p id="a">
|