blob: 7af47c38bf1b206d84148b6f9809fb5baa87dc46 [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpEditingCallbacks();
</script>
<p>This tests to make sure that rich editing commands like Bold can be performed on text in a document in design mode.</p>
<div id="test">This text should be bold.</div>
<script>
document.designMode = "on";
var s = window.getSelection();
var e = document.getElementById("test");
s.setBaseAndExtent(e, 0, e, e.childNodes.length);
document.execCommand("Bold");
</script>