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