6 border:
1px solid blue;
12 vertical-align: bottom;
15 -webkit-user-select: none;
22 Everything in this box should be selected and the text
25 <section class=
"nosel">
26 Nothing in this box should be selected and the text
30 Everything in this box should be selected and the text
35 var selection
= window
.getSelection();
36 var range
= document
.createRange();
37 range
.selectNodeContents(document
.body
);
38 selection
.removeAllRanges();
39 selection
.addRange(range
);