2008-08-06 05:16:54 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
|
|
|
|
type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://mochikit/content/a11y/accessible/nsIAccessible_name.css"
|
|
|
|
type="text/css"?>
|
|
|
|
|
|
|
|
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2008-08-08 07:44:26 -07:00
|
|
|
title="nsIAccessible actions testing">
|
2008-08-06 05:16:54 -07:00
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
|
2008-10-08 05:54:58 -07:00
|
|
|
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/common.js" />
|
2008-08-08 07:44:26 -07:00
|
|
|
<script type="application/javascript"
|
2009-05-10 18:32:09 -07:00
|
|
|
src="chrome://mochikit/content/a11y/accessible/events.js" />
|
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/a11y/accessible/actions.js" />
|
2008-08-08 07:44:26 -07:00
|
|
|
|
2008-08-06 05:16:54 -07:00
|
|
|
<script type="application/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
function doTest()
|
|
|
|
{
|
|
|
|
var actionsArray = [
|
|
|
|
{
|
|
|
|
ID: "menu",
|
|
|
|
actionName: "click",
|
|
|
|
events: CLICK_EVENTS
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "submenu",
|
|
|
|
actionName: "click",
|
|
|
|
events: CLICK_EVENTS
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "menuitem",
|
|
|
|
actionName: "click",
|
|
|
|
events: ALL_EVENTS
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "button",
|
|
|
|
actionName: "press",
|
|
|
|
events: ALL_EVENTS
|
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "buttonmenu",
|
|
|
|
actionName: "press",
|
|
|
|
events: CLICK_EVENTS
|
2009-08-23 22:13:05 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
ID: "labelWithPopup",
|
|
|
|
actionName: "click",
|
|
|
|
events: CLICK_EVENTS
|
2009-05-10 18:32:09 -07:00
|
|
|
}/*, // XXX: bug 490288
|
2008-08-06 05:16:54 -07:00
|
|
|
{
|
|
|
|
ID: "buttonmenu_item",
|
|
|
|
actionName: "click",
|
|
|
|
events: CLICK_EVENTS
|
2009-05-10 18:32:09 -07:00
|
|
|
}*/
|
2008-08-06 05:16:54 -07:00
|
|
|
];
|
2009-05-10 18:32:09 -07:00
|
|
|
|
2008-08-06 05:16:54 -07:00
|
|
|
testActions(actionsArray);
|
|
|
|
}
|
|
|
|
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2009-09-23 07:21:47 -07:00
|
|
|
addA11yLoadEvent(doTest);
|
2008-08-06 05:16:54 -07:00
|
|
|
]]>
|
|
|
|
</script>
|
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
<hbox flex="1" style="overflow: auto;">
|
|
|
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=410765"
|
|
|
|
title="nsIAccessible actions testing">
|
|
|
|
Mozilla Bug 410765
|
|
|
|
</a>
|
2009-08-23 22:13:05 -07:00
|
|
|
<a target="_blank"
|
|
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=504252"
|
|
|
|
title="Expose STATE_HASPOPUP on XUL elements that have an @popup attribute">
|
|
|
|
Mozilla Bug 504252
|
|
|
|
</a><br/>
|
2009-05-10 18:32:09 -07:00
|
|
|
<p id="display"></p>
|
|
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
|
|
<pre id="test">
|
|
|
|
</pre>
|
|
|
|
</body>
|
2008-08-06 05:16:54 -07:00
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
<vbox flex="1">
|
|
|
|
<menubar>
|
|
|
|
<menu label="menu" id="menu">
|
2008-08-06 05:16:54 -07:00
|
|
|
<menupopup>
|
2009-05-10 18:32:09 -07:00
|
|
|
<menuitem label="menu item" id="menuitem"/>
|
|
|
|
<menu label="submenu" id="submenu">
|
|
|
|
<menupopup>
|
|
|
|
<menuitem label="menu item"/>
|
|
|
|
</menupopup>
|
|
|
|
</menu>
|
2008-08-06 05:16:54 -07:00
|
|
|
</menupopup>
|
|
|
|
</menu>
|
2009-05-10 18:32:09 -07:00
|
|
|
</menubar>
|
2008-08-06 05:16:54 -07:00
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
<button label="button" id="button"/>
|
2008-08-06 05:16:54 -07:00
|
|
|
|
2009-05-10 18:32:09 -07:00
|
|
|
<button type="menu" id="buttonmenu" label="button">
|
|
|
|
<menupopup>
|
|
|
|
<menuitem label="item1" id="buttonmenu_item"/>
|
|
|
|
<menuitem label="item1"/>
|
|
|
|
</menupopup>
|
|
|
|
</button>
|
2009-08-23 22:13:05 -07:00
|
|
|
|
|
|
|
<label id="labelWithPopup" value="file name"
|
|
|
|
popup="fileContext"
|
|
|
|
tabindex="0"/>
|
2009-05-10 18:32:09 -07:00
|
|
|
</vbox>
|
|
|
|
</hbox>
|
2008-08-06 05:16:54 -07:00
|
|
|
</window>
|
|
|
|
|