Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-text-014.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 < 4; i++)
17         extendSelectionForwardByCharacterCommand();
18     copyCommand();
19     moveSelectionForwardByCharacterCommand();
20     typeCharacterCommand();
21     moveSelectionBackwardByCharacterCommand();
22     pasteCommand();
23 }
24
25 </script>
26
27 <title>Editing Test</title> 
28 </head> 
29 <body contenteditable id="root">
30
31 See this bug: <a href="rdar://problem/3918712">&lt;rdar://problem/3918712&gt;</a> "Paste as Quotation" in Mail just pastes (&lt;blockquote&gt; tag seems to be lost).
32 Should see two boxes with blockquoted "foo" text, followed by a box with an unquoted "x".
33 <div style="height: 24px"></div>
34
35 <div id="test" class="editing"><div><blockquote>foo</blockquote></div></div>
36 <div class="editing"></div>
37  
38 <script>
39 runEditingTest();
40 </script>
41
42 </body>
43 </html>