trisquel-icecat/icecat/layout/reftests/selection/disabled-1.html
2025-10-06 02:35:48 -06:00

9 lines
343 B
HTML

<!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>