disabled-1.html (343B)
1 <!doctype html> 2 <input id="outside" value="abc" inputmode="none"> 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>