mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
8fa798f748
--HG-- extra : rebase_source : be7c85abe0c8c84c5663a871ee831863c4823bad
17 lines
247 B
HTML
17 lines
247 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var sel = window.getSelection('');
|
|
sel.collapse(document.createTextNode("x"), 0);
|
|
sel.extend(document.documentElement, 0);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|