blob: 7074c9291bd1282998d3cbad6074d4028f793c40 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Selection painting test</title>
<style>
div {
margin: 0;
padding: 0;
display: inline-block;
}
</style>
</head>
<body>
<div>
<span>There</span> <span>should</span> <span>be</span>
<span>no</span> <span>white</span> <span>gaps</span>
<span>between</span> <span>words</span>.
</div>
<script>
window.getSelection().selectAllChildren(document.body.firstElementChild);
</script>
</body>
</html>