mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
7c73e783f7
--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>
|