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