Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-text-006.html
1 <html> 
2 <head>
3
4 <style>
5 .editing { 
6     border: 2px solid red; 
7     padding: 12px; 
8     font-size: 24px; 
9 }
10 </style>
11 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
12
13 <script>
14
15 function editingTest() {
16     for (i = 0; i < 39; i++)
17         extendSelectionForwardByCharacterCommand();
18     copyCommand();
19     pasteCommand();
20     pasteCommand();
21 }
22
23 </script>
24
25 <title>Editing Test</title> 
26 </head> 
27 <body contenteditable id="root">
28 <div id="test" class="editing">There is a tide in the affairs of men,</div>
29 <div class="editing">Which taken at the flood leads on to fortune.</div>
30 <div class="editing">Omitted, all the voyage of their life,</div>
31 <div class="editing">Is bound in shallows and in miseries.</div>
32  
33 <script>
34 runEditingTest();
35 </script>
36
37 </body>
38 </html>