Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / selection / caret-before-select.html
blobf1b01ed6700a3c0e3e92d086c8d56475f9f95963
1 <div contenteditable style="padding:2em; border:5px solid red"><select id=edit><option>One</option></select>blaa</div>
2 <script>
3 var start = document.getElementById("edit");
4 var s = window.getSelection();
5 s.collapse(start, 0);
6 </script>