mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
61 lines
1.5 KiB
HTML
61 lines
1.5 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
<title>Keyboard shortcuts tests</title>
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
src="common.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function testKeyboardShortcut(aAccOrElmOrID, aKey)
|
|
{
|
|
var acc = getAccessible(aAccOrElmOrID);
|
|
if (!acc)
|
|
return;
|
|
|
|
is(acc.keyboardShortcut, aKey,
|
|
"Wrong keyboard shortcut on " + prettyName(aAccOrElmOrID));
|
|
}
|
|
|
|
function doTest()
|
|
{
|
|
testKeyboardShortcut("input1", "");
|
|
testKeyboardShortcut("input2", MAC ? "⌃b" : "Alt+Shift+b");
|
|
|
|
SimpleTest.finish();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=381599"
|
|
title="Inverse relations cache">
|
|
Mozilla Bug 381599
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<label accesskey="a">
|
|
<input id="input1"/>
|
|
</label>
|
|
<label accesskey="b" for="input2">
|
|
<input id="input2"/>
|
|
</body>
|
|
</html>
|