Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/selection/reftest.list
<!doctype html>
<input id="outside" style="position: absolute; left: 200vw;"> <!-- intentionally out of view -->
<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>