blob: be00110767b9767635df1c050a611c77d226cb30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<script>
window.requestIdleCallback(() => {
window.close();
})
window.onload = () => {
a.value = "J."
b.submit()
window.requestAnimationFrame(() => { a.setRangeText("foo") })
}
</script>
<textarea id="a" style="max-width: 0"></textarea>
<form id="b" target="a">
|