Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / input-with-visibility-hidden.html
1 <!DOCTYPE html>
2 <html>
3 <body style="visibility: hidden;">
4 <div  style="visibility: visible;">
5 <p>This tests pasting (InsertHTML) into an input element when body element has visibility set to hidden.
6 You should see PASS below.</p>
7 <input type="text" value="FAIL">
8 <p><script>
9
10 if (window.layoutTestController)
11     layoutTestController.dumpAsText();
12
13 var input = document.querySelector('input');
14 input.focus();
15 document.execCommand('InsertHTML', false, 'PASS');
16
17 document.write(input.value);
18
19 </script></p>
20 </div>
21 </body>
22 </html>