blob: 9ec1a1c1440bf6f9b42476dcf3c2346ae43fdee3 [file] [log] [blame]
<script>
if (window.layoutTestController)
layoutTestController.dumpEditingCallbacks();
</script>
<p>This tests the NSResponder method indent:. You should see an indented 'foo' below.</p>
<div id="div" contenteditable="true">foo</div>
<script>
var div = document.getElementById("div");
var sel = window.getSelection();
sel.setPosition(div, 0);
textInputController.doCommand("indent:");
</script>