Change log level: info -> debug
[framework/web/webkit-efl.git] / LayoutTests / editing / pasteboard / crash-accessing-clipboardData-types.html
1 <body>
2
3 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=30150">bug 30150</a> Crash when accessing clipboardData.types</p>
4 <p>PASS if didn't crash.</p>
5
6 <div contenteditable id=d>Test</div>
7
8 <script>
9 if (window.testRunner)
10     testRunner.dumpAsText();
11
12 document.body.addEventListener("paste", function(e){ e.clipboardData.types }, true);
13
14 document.getElementById("d").focus();
15 document.execCommand("SelectAll");
16 document.execCommand("Cut");
17 document.execCommand("Paste");
18
19 </script>
20 </body>