Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / nsresponder-outdent.html
blobdd18daa661e48516acfefc14a196f9f6d5c0d385
1 <script>
2 if (window.testRunner)
3 testRunner.dumpEditingCallbacks();
4 </script>
5 <p>This tests the outdent: method. You should see an undented 'foo' below.</p>
6 <div id="div" contenteditable="true"><blockquote class="webkit-indent-blockquote">foo</blockquote></div>
8 <script>
9 var div = document.getElementById("div");
10 var sel = window.getSelection();
12 sel.collapse(div, 0);
14 document.execCommand("Outdent");
15 </script>