Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 5075944.html
1 <p>This test for a bug copy/pasting underlined text.</p>
2 <div id="copy" contenteditable="true">This should be underlined.</div>
3 <div id="paste" contenteditable="true"><br></div>
4
5 <script>
6 var copy = document.getElementById("copy");
7 copy.focus();
8 document.execCommand("SelectAll");
9 document.execCommand("Underline");
10 document.execCommand("Copy");
11 var paste = document.getElementById("paste");
12 paste.focus();
13 document.execCommand("Paste");
14 </script>