Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-xml.xhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" 
2    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
4 <html xmlns="http://www.w3.org/1999/xhtml">
5
6 <head>
7
8 <style>
9 .editing {
10     border: 2px solid red;
11     padding: 12px;
12     font-size: 24px;
13 }
14 </style>
15
16 <script src="../editing.js" language="JavaScript" type="text/JavaScript" />
17
18 <script>
19
20 function editingTest() {
21     for (i = 0; i != 4; i++)
22         moveSelectionForwardByCharacterCommand();
23     for (i = 0; i != 3; i++)
24         extendSelectionForwardByCharacterCommand();
25     copyCommand();
26     moveSelectionForwardByCharacterCommand();
27     pasteCommand();
28 }
29
30 </script>
31
32 </head> 
33
34 <body>
35 <div contenteditable="" id="root" class="editing">
36 <span id="test">foo bar baz</span>
37 </div>
38
39 <script>
40 runDumpAsTextEditingTest(true);
41 </script>
42
43 </body>
44 </html>