Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / paste-plaintext-user-select-none.html
1 <html> 
2 <head>
3     <style>
4         body {
5             -webkit-user-select: none;
6         }
7
8         .editing { 
9             border: 2px solid red; 
10             padding: 12px; 
11             font-size: 24px;
12             -webkit-user-select: text;
13             -webkit-user-modify: read-write-plaintext-only;
14         }
15     </style>
16     <script src=../editing.js language="JavaScript" type="text/JavaScript" ></script>
17     <script>
18         function editingTest() {
19             if (window.testRunner)
20                 testRunner.dumpAsText();
21             
22             document.getElementById('tf').focus();
23             copyCommand();
24
25             document.getElementById('root').focus();
26             pasteCommand();
27         }
28     </script>
29 </head> 
30     <body onload="runEditingTest();">
31         This tests that you can paste into a plain-text editable area even if the body has user-select:none set on it.
32         <input id="tf" value="Test Passed">
33         <div id="root" class="editing"></div>
34     </body>
35 </html>