2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / editing / deleting / delete-line-009.html
blob84e797c1d8bf5cc114480431d1948070d97e9237
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 extendSelectionBackwardByCharacterCommand();
18 deleteCommand();
21 </script>
23 <title>Editing Test</title>
24 </head>
25 <body contenteditable id="root">
26 <div id="test" class="editing">There is a tide<br>in the affairs of men</div>
27 <div class="editing">Which taken at the flood</div>
28 <script>
29 runEditingTest();
30 </script>
32 </body>
33 </html>