Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-text-007.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
29 <div id="test" class="editing">There is a tide in the affairs of men,<div class="editing">Which taken at the flood leads on to fortune.<div class="editing">Omitted, all the voyage of their life,<div class="editing">Is bound in shallows and in miseries.</div></div></div></div>
30  
31 <script>
32 runEditingTest();
33 </script>
34
35 </body>
36 </html>