2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / LayoutTests / editing / pasteboard / paste-text-005.html
blob2d4438898b2283d96bb5cf32fb0ea0c901eca6db
1 <html>
2 <head>
4 <style>
5 .editing {
6 border: 2px solid red;
7 padding: 12px;
8 font-size: 24px;
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
13 <script>
15 function editingTest() {
16 for (i = 0; i < 6; i++)
17 moveSelectionForwardByCharacterCommand();
18 for (i = 0; i < 33; i++)
19 extendSelectionForwardByCharacterCommand();
20 copyCommand();
21 pasteCommand();
22 pasteCommand();
25 </script>
27 <title>Editing Test</title>
28 </head>
29 <body contenteditable id="root">
30 <div id="test" class="editing">There is a tide in the affairs of men,</div>
31 <div class="editing">Which taken at the flood leads on to fortune.</div>
32 <div class="editing">Omitted, all the voyage of their life,</div>
33 <div class="editing">Is bound in shallows and in miseries.</div>
35 <script>
36 runEditingTest();
37 </script>
39 </body>
40 </html>