blob: e0612d3cbcc81f96de9b2d7102aaba212851cd55 [file] [log] [blame] [edit]
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<input id="inputElement" value="hello, world">
<script>
inputElement.focus();
inputElement.setSelectionRange(0, 5);
shouldBeEqualToString('getSelection().toString()', 'hello');
</script>