mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
d70b8b4af4
Differential Revision: https://phabricator.services.mozilla.com/D101149
13 lines
270 B
HTML
13 lines
270 B
HTML
<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">
|