blob: d0d0f2aafce8dd92a4ba15930ed584b04343bf7f [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpEditingCallbacks();
</script>
<p>Only the line break after the image should be selected.</p>
<hr>
<div contenteditable="true" id="div"><img src="../resources/abe.jpg"><br>foo</div>
<script>
if (window.layoutTestController)
window.layoutTestController.dumpSelectionRect();
var e = document.getElementById("div");
var s = window.getSelection();
// Select the line break
s.setBaseAndExtent(e, 1, e, 2);
</script>