blob: 2833e58204fcab929f3e2d6716b76467b53a8742 [file] [log] [blame]
<div oncontextmenu="contextmenu(event)">
Select some text in the contenteditable below and press the context menu key
(or shift+F10). The browser should not crash.
<div contenteditable id="a">
<p>|content editable|</p>
</div>
After content editable.
</div>
<script>
function contextmenu(event) {
document.getElementById("a").style.visibility = "hidden";
}
</script>