Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / delete-line-017.html
blob449858e26ff80896f66c57547b455bba2e87b311
1 <html>
3 <head>
4 <script src="../editing.js"></script>
5 <script>
6 function editingTest() {
7 moveSelectionForwardByLineCommand();
8 extendSelectionForwardByLineCommand();
9 deleteCommand();
11 </script>
12 </head>
14 <body>
16 <p>This tests deletion of an empty line which is a &lt;br&gt; element just after
17 a &lt;div&gt; element. If the deletion is successful, the result should have two lines,
18 and the insertion point should be at the start of the second line, just before the letter "b".</p>
20 <div contenteditable>
21 <div id="test">a</div><br><div>b</div>
22 </div>
24 </body>
26 <script>runEditingTest()</script>
28 </html>