Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / deleting / delete-line-007.html
blob863cddfec126a4be53f875631f8c277a5986f616
1 <html>
2 <head>
4 <style>
5 .editing {
6 font-size: 24px;
7 width: 600px;
9 </style>
10 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
12 <script>
14 function editingTest() {
15 extendSelectionForwardByLineCommand();
16 extendSelectionForwardByLineCommand();
17 deleteCommand();
20 </script>
22 <title>Editing Test</title>
23 </head>
24 <body contenteditable id="root">
25 <div id="test" class="editing">There is a tide<br>in the affairs of men</div>
26 <div class="editing">Which taken at the flood</div>
27 <script>
28 runEditingTest();
29 </script>
31 </body>
32 </html>