Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-blockquote-after-blockquote.html
1 <style>
2 blockquote {
3     color: blue;
4     border-left: 2px solid blue;
5     margin: 0px;
6     padding: 0 0 0 20px;
7 }
8 </style>
9
10 <p>This tests pasting a blockquote after another blockquote.</p>
11 <div id="div" contenteditable="true"><blockquote type='cite'>Line 1</blockquote><br></div>
12
13 <script>
14 var sel = window.getSelection();
15 var div = document.getElementById("div");
16
17 sel.setPosition(div, 1);
18 document.execCommand("InsertHTML", false, "<blockquote type='cite'>Line 2</blockquote>");
19 </script>