зеркало из https://github.com/mozilla/gecko-dev.git
9 строки
326 B
HTML
9 строки
326 B
HTML
<!doctype html>
|
|
<input id="outside" style="position: absolute; left: 200vw;"> <!-- intentionally out of view -->
|
|
<iframe srcdoc="<!doctype html>Something inside <input value='some input'>"></iframe>
|
|
<script>
|
|
onload = function() {
|
|
document.querySelector("iframe").contentDocument.querySelector("input").select();
|
|
}
|
|
</script>
|