Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<style>
div { font-family: monospace; }
</style>
<p>The test passes if the following text is visible and fully selected below: …56 FEDCBA</p>
<div id=container>…56 FEDCBA</div>
<script>
let range = new Range();
range.setStart(container.firstChild, 1);
range.setEnd(container.firstChild, 10);
document.getSelection().addRange(range);
</script>