trisquel-icecat/icecat/layout/reftests/selection/disabled-1.html

9 lines
309 B
HTML

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