Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<input id="outside" value="abc" inputmode="none">
<iframe srcdoc="<!doctype html>Something inside <input value='some input' inputmode='none'>"></iframe>
<script>
onload = function() {
document.querySelector("iframe").contentDocument.querySelector("input").select();
document.getElementById("outside").select();
}
</script>