disabled-2.html (407B)
1 <!doctype html> 2 <input id="outside" style="position: absolute; left: 200vw;" inputmode="none"> <!-- intentionally out of view --> 3 <iframe srcdoc="<!doctype html>Something inside <input value='some input' inputmode='none'>"></iframe> 4 <script> 5 onload = function() { 6 document.querySelector("iframe").contentDocument.querySelector("input").select(); 7 document.getElementById("outside").select(); 8 } 9 </script>