blob: 60d0358b7f6c04805c6972ba0bc3fe726429a3f6 [file] [log] [blame]
<body>
<p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=30150">bug 30150</a> Crash when accessing clipboardData.types</p>
<p>PASS if didn't crash.</p>
<div contenteditable id=d>Test</div>
<script>
if (window.layoutTestController)
layoutTestController.dumpAsText();
document.body.addEventListener("paste", function(e){ e.clipboardData.types }, true);
document.getElementById("d").focus();
document.execCommand("SelectAll");
document.execCommand("Cut");
document.execCommand("Paste");
</script>
</body>