blob: 2833e58204fcab929f3e2d6716b76467b53a8742 [file] [log] [blame]
tony@chromium.orga397bef2010-07-20 08:17:32 +00001<div oncontextmenu="contextmenu(event)">
2Select some text in the contenteditable below and press the context menu key
3(or shift+F10). The browser should not crash.
4<div contenteditable id="a">
5<p>|content editable|</p>
6</div>
7After content editable.
8</div>
9<script>
10function contextmenu(event) {
11 document.getElementById("a").style.visibility = "hidden";
12}
13</script>