6 lines
199 B
HTML
6 lines
199 B
HTML
<!doctype html>
|
|
<input id="outside" value="abc">
|
|
<iframe srcdoc="<!doctype html>Something inside <input value='some input'>"></iframe>
|
|
<script>
|
|
document.getElementById("outside").select();
|
|
</script>
|