mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
402 B
HTML
17 lines
402 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
onload = function() {
|
|
var el;
|
|
while (el = document.querySelector("br")) {
|
|
el.parentNode.removeChild(el);
|
|
}
|
|
focus();
|
|
document.body.focus();
|
|
getSelection().collapse(document.body.firstChild, 0);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body style="white-space:pre-wrap;" contenteditable></body></html>
|