--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/WebCore/manual-tests/context-click-unfocused-frame.html Fri Sep 17 09:02:29 2010 +0300
@@ -0,0 +1,17 @@
+<frameset cols="*">
+ <frame src="data:text/html,
+ <script>
+ function contextMenu()
+ {
+ document.getElementById('result').appendChild(document.createTextNode('PASS'));
+ }
+ </script>
+ <body onmousedown='return false;' oncontextmenu='contextMenu(); return false;'>
+ <p>
+ Control-click (Mac) or right-click (Windows) below. The word
+ %26ldquo;PASS%26rdquo; should appear. A contextual menu should not open.
+ </p>
+ <p id='result'></p>
+ </body>
+ ">
+</frameset>