Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / 4976800.html
blob503bbad233e01ebf72e81e8a3ec8307421273893
1 <p>This tests for a bug that would cause paragraphs before and after indented content to collapse onto the same line as indented content after an outdent operation. 'foo', 'bar' and 'baz' should all appear on separate paragraphs.</p>
2 <div id="div" contenteditable="true">foo<blockquote id="blockquote" class="webkit-indent-blockquote">bar</blockquote>baz</div>
4 <script>
5 if (window.testRunner)
6 window.testRunner.dumpAsText();
8 var blockquote = document.getElementById("blockquote");
9 var sel = window.getSelection();
11 sel.collapse(blockquote, 0);
12 document.execCommand("Outdent");
13 </script>