Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 4076267.html
1 <html> 
2 <head>
3
4 <script src=../editing.js language="JavaScript" type="text/JavaScript"></script>
5
6 <script>
7
8 function editingTest() {
9     moveSelectionForwardByCharacterCommand();
10     extendSelectionForwardByLineCommand();
11     copyCommand();
12     deleteCommand();
13     deleteCommand();
14     pasteAndMatchStyleCommand();
15 }
16
17 </script>
18
19 <title>Pasting plain text loses leading/trailing whitespace</title> 
20 </head> 
21 <body>
22
23 <p>This tests to see if leading spaces are lost during a copy/paste</p>
24
25 <hr>
26
27 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
28 <div id="test" class="editing">. this text should have a single leading space before it</div>
29 </div>
30
31 <script>
32 runEditingTest();
33 </script>
34
35 </body>
36 </html>