blob: 9ca79823f8190b8685c579e50159650918244aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<style>
#a { max-width: 1 }
</style>
<script>
function go() {
a.value = ">"
a.selectionDirection = "foo"
b.requestFullscreen()
document.createElement("body").onresize = () => { a.selectionEnd = 0 }
setTimeout(window.close, 100)
}
</script>
<body onload=go()>
<textarea id="a"></textarea>
<ol id="b">
<div>
|