Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-4035648-fix.html
1 <html> 
2 <head>
3
4 <style>
5 .editing { 
6     border: 2px solid red; 
7     font-size: 24px; 
8 }
9 .explanation { 
10     border: 2px solid blue; 
11     padding: 12px; 
12     font-size: 24px; 
13     margin-bottom: 24px;
14 }
15 .scenario { margin-bottom: 16px;}
16 .scenario:first-line { font-weight: bold; margin-bottom: 16px;}
17 .expected-results:first-line { font-weight: bold }
18 </style>
19 <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
20
21 <script>
22
23 function editingTest() {
24     for (i = 0; i < 3; i++)
25         extendSelectionForwardByLineCommand();
26     cutCommand();
27     pasteCommand();
28 }
29
30 </script>
31
32 <title>Editing Test</title> 
33 </head> 
34 <body>
35
36 <div class="explanation">
37 <div class="scenario">
38 Tests: 
39 <br>
40 Bug fix for <a href="rdar://problem/4035648">&lt;rdar://problem/4035648&gt;</a> REGRESSION (Mail): line feed in source HTML file causes bad copy/paste behavior
41 </div>
42 <div class="expected-results">
43 Expected Results:
44 <br>
45 Should see the text self-documenting itself correctly:
46 <BR>
47 <B>bold<BR>
48 </B>
49 plain
50 </div>
51 </div>
52
53 <div contenteditable id="root" style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space;">
54 <div id="test" class="editing">
55 <BR>
56 <B>bold<BR>
57 </B>
58 plain
59 </div>
60 </div>
61
62 <script>
63 runEditingTest();
64 </script>
65
66 </body>
67 </html>