mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
163 lines
5.8 KiB
HTML
163 lines
5.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Test ARIA tab accessible selected state</title>
|
|
|
|
<link rel="stylesheet" type="text/css"
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
|
|
<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"
|
|
src="../role.js"></script>
|
|
<script type="application/javascript"
|
|
src="../states.js"></script>
|
|
<script type="application/javascript"
|
|
src="../events.js"></script>
|
|
|
|
<script type="application/javascript">
|
|
function focusARIAItem(aID, aIsSelected)
|
|
{
|
|
this.DOMNode = getNode(aID);
|
|
|
|
this.invoke = function focusARIAItem_invoke()
|
|
{
|
|
this.DOMNode.focus();
|
|
}
|
|
|
|
this.check = function focusARIAItem_check(aEvent)
|
|
{
|
|
testStates(this.DOMNode, aIsSelected ? STATE_SELECTED : 0, 0,
|
|
aIsSelected ? 0 : STATE_SELECTED);
|
|
}
|
|
|
|
this.getID = function focusARIAItem_getID()
|
|
{
|
|
return "Focused ARIA widget item with aria-selected='" +
|
|
(aIsSelected ? "true', should" : "false', shouldn't") +
|
|
" have selected state on " + prettyName(aID);
|
|
}
|
|
}
|
|
|
|
function focusActiveDescendantItem(aItemID, aWidgetID, aIsSelected)
|
|
{
|
|
this.DOMNode = getNode(aItemID);
|
|
this.widgetDOMNode = getNode(aWidgetID);
|
|
|
|
this.invoke = function focusActiveDescendantItem_invoke()
|
|
{
|
|
this.widgetDOMNode.setAttribute("aria-activedescendant", aItemID);
|
|
this.widgetDOMNode.focus();
|
|
}
|
|
|
|
this.check = function focusActiveDescendantItem_check(aEvent)
|
|
{
|
|
testStates(this.DOMNode, aIsSelected ? STATE_SELECTED : 0, 0,
|
|
aIsSelected ? 0 : STATE_SELECTED);
|
|
}
|
|
|
|
this.getID = function tabActiveDescendant_getID()
|
|
{
|
|
return "ARIA widget item managed by activedescendant " +
|
|
(aIsSelected ? "should" : "shouldn't") +
|
|
" have the selected state on " + prettyName(aItemID);
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
// Test
|
|
|
|
//gA11yEventDumpID = "eventdump"; // debug stuff
|
|
//gA11yEventDumpToConsole = true;
|
|
|
|
var gQueue = null;
|
|
|
|
function doTest()
|
|
{
|
|
// aria-selected
|
|
testStates("aria_tab1", 0, 0, STATE_SELECTED);
|
|
testStates("aria_tab2", STATE_SELECTED);
|
|
testStates("aria_tab3", 0, 0, STATE_SELECTED);
|
|
testStates("aria_option1", 0, 0, STATE_SELECTED);
|
|
testStates("aria_option2", STATE_SELECTED);
|
|
testStates("aria_option3", 0, 0, STATE_SELECTED);
|
|
testStates("aria_treeitem1", 0, 0, STATE_SELECTED);
|
|
testStates("aria_treeitem2", STATE_SELECTED);
|
|
testStates("aria_treeitem3", 0, 0, STATE_SELECTED);
|
|
|
|
// selected state when widget item is focused
|
|
gQueue = new eventQueue(EVENT_FOCUS);
|
|
|
|
gQueue.push(new focusARIAItem("aria_tab1", true));
|
|
gQueue.push(new focusARIAItem("aria_tab2", true));
|
|
gQueue.push(new focusARIAItem("aria_tab3", false));
|
|
gQueue.push(new focusARIAItem("aria_option1", true));
|
|
gQueue.push(new focusARIAItem("aria_option2", true));
|
|
gQueue.push(new focusARIAItem("aria_option3", false));
|
|
gQueue.push(new focusARIAItem("aria_treeitem1", true));
|
|
gQueue.push(new focusARIAItem("aria_treeitem2", true));
|
|
gQueue.push(new focusARIAItem("aria_treeitem3", false));
|
|
|
|
// selected state when widget item is focused (by aria-activedescendant)
|
|
gQueue.push(new focusActiveDescendantItem("aria_tab5", "aria_tablist2", true));
|
|
gQueue.push(new focusActiveDescendantItem("aria_tab6", "aria_tablist2", true));
|
|
gQueue.push(new focusActiveDescendantItem("aria_tab4", "aria_tablist2", false));
|
|
|
|
gQueue.invoke(); // SimpleTest.finish() will be called in the end
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
addA11yLoadEvent(doTest);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=653601"
|
|
title="aria-selected ignored for ARIA tabs">
|
|
Mozilla Bug 653601
|
|
</a>
|
|
<a target="_blank"
|
|
href="https://bugzilla.mozilla.org/show_bug.cgi?id=526703"
|
|
title="Focused widget item should expose selected state by default">
|
|
Mozilla Bug 526703
|
|
</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none"></div>
|
|
<pre id="test">
|
|
</pre>
|
|
|
|
<!-- tab -->
|
|
<div id="aria_tablist" role="tablist">
|
|
<div id="aria_tab1" role="tab" tabindex="0">unselected tab</div>
|
|
<div id="aria_tab2" role="tab" tabindex="0" aria-selected="true">selected tab</div>
|
|
<div id="aria_tab3" role="tab" tabindex="0" aria-selected="false">focused explicitly unselected tab</div>
|
|
</div>
|
|
|
|
<!-- listbox -->
|
|
<div id="aria_listbox" role="listbox">
|
|
<div id="aria_option1" role="option" tabindex="0">unselected option</div>
|
|
<div id="aria_option2" role="option" tabindex="0" aria-selected="true">selected option</div>
|
|
<div id="aria_option3" role="option" tabindex="0" aria-selected="false">focused explicitly unselected option</div>
|
|
</div>
|
|
|
|
<!-- tree -->
|
|
<div id="aria_tree" role="tree">
|
|
<div id="aria_treeitem1" role="treeitem" tabindex="0">unselected treeitem</div>
|
|
<div id="aria_treeitem2" role="treeitem" tabindex="0" aria-selected="true">selected treeitem</div>
|
|
<div id="aria_treeitem3" role="treeitem" tabindex="0" aria-selected="false">focused explicitly unselected treeitem</div>
|
|
</div>
|
|
|
|
<!-- tab managed by active-descendant -->
|
|
<div id="aria_tablist2" role="tablist" tabindex="0">
|
|
<div id="aria_tab4" role="tab" aria-selected="false">focused explicitly unselected tab</div>
|
|
<div id="aria_tab5" role="tab">initially selected tab</div>
|
|
<div id="aria_tab6" role="tab">later selected tab</div>
|
|
</div>
|
|
</body>
|
|
</html>
|