blob: 6900173c056fe6277f507ce20032392d44362da1 [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpEditingCallbacks();
</script>
<p>This tests for a bug when creating markup for a selection that contained unrendered nodes with children. You should see a picture of abe followed by a select box.</p>
<div id="paste" contenteditable="true"></div>
<img id="start" src="../resources/abe.jpg">
<select id="end"><optgroup><option>1</option><option>2</option><option>3</option></optgroup></select>
</select>
<script>
function runTest() {
var start = document.getElementById("start");
var end = document.getElementById("end");
var s = window.getSelection();
s.setBaseAndExtent(start, 0, end, end.childNodes.length);
document.execCommand("Copy");
s.setPosition(document.getElementById("paste"), 0);
document.execCommand("Paste");
if (window.layoutTestController)
window.layoutTestController.notifyDone();
}
if (window.layoutTestController)
window.layoutTestController.waitUntilDone();
window.setTimeout(runTest, 100);
</script>