Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 5601583-1.html
1 <p>This tests for a bug where a copied link wouldn't paste as a link.  Both editable regions below should contain a link "Hello\nWorld".</p>
2 <div id="copy" contenteditable="true">
3 <a href="http://www.apple.com/">Hello<br>World</a>
4 </div>
5
6 <div id="paste" contenteditable="true"><br></div>
7
8 <script>
9 copy = document.getElementById("copy");
10 copy.focus();
11 document.execCommand("SelectAll");
12 document.execCommand("Copy");
13
14 paste = document.getElementById("paste");
15 paste.focus();
16 document.execCommand("Paste");
17 </script>