3 <META HTTP-EQUIV=
"CONTENT-TYPE" CONTENT=
"text/html; charset=UTF-8">
4 <title>Menu key testing
</title>
5 <script language=
"javascript" type=
"text/javascript">
7 var li
= document
.createElement("li");
8 li
.appendChild(document
.createTextNode(str
));
9 var results
= document
.getElementById("results");
10 results
.appendChild(li
);
16 See bug:
<a href=
"https://bugs.webkit.org/show_bug.cgi?id=30619">30619</a>.
17 Note: this test is only applicable for Linux and Windows.
20 <li>Click the text input box below and press Menu key.
21 The test passes if you see 'PASS' below.
22 <input type=
"text" oncontextmenu=
"log('PASS');" />
24 <li oncontextmenu=
"log('PASS');">Click or select somewhere
25 in this text and press Menu key.
26 The test passes if you see additional 'PASS' below.
29 <ul id=
"results"></ul>