Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / copy-element-with-conflicting-background-color-from-rule-expected.html
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <p>This tests copying an element with a background color specified in a style rule that conflicts with the background color of a wrapping style.
5 The pasted text should have lightgreen background color.</p>
6 Paste here:
7 <div contenteditable><div style="background-color: lightgreen;">Copy this line</div>
8 <span id="target"></span><br>
9 </div>
10 <script>
11 var target = document.getElementById('target');
12 target.parentNode.focus();
13 getSelection().collapse(target, 0);
14 </script>
15 </body>
16 </html>