Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / 5028447.html
1 <html style="font-size: 50px;">
2 <style>
3 body {
4     font-size: 50%;
5 }
6 </style>
7 <body contenteditable="true">
8 All the text here should be the same size.&nbsp;
9 <script>
10 document.execCommand("SelectAll");
11 document.execCommand("Copy");
12 window.getSelection().modify("move", "forward", "character");
13 document.execCommand("Paste");
14 </script>
15 </body>