mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Bug 900097 - Add tests. r=surkov
This commit is contained in:
parent
de9fb7e97c
commit
0e79aa30bd
@ -14,6 +14,7 @@ MOCHITEST_A11Y_FILES =\
|
|||||||
test_aria.html \
|
test_aria.html \
|
||||||
test_aria.xul \
|
test_aria.xul \
|
||||||
test_general.html \
|
test_general.html \
|
||||||
|
test_general.xul \
|
||||||
test_svg.html \
|
test_svg.html \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
55
accessible/tests/mochitest/role/test_general.xul
Normal file
55
accessible/tests/mochitest/role/test_general.xul
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
<?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"?>
|
||||||
|
|
||||||
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||||
|
title="Accessibility Role XUL Test.">
|
||||||
|
|
||||||
|
<script type="application/javascript"
|
||||||
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
|
||||||
|
|
||||||
|
<script type="application/javascript"
|
||||||
|
src="../common.js"></script>
|
||||||
|
<script type="application/javascript"
|
||||||
|
src="../role.js"></script>
|
||||||
|
|
||||||
|
<script type="application/javascript">
|
||||||
|
<![CDATA[
|
||||||
|
function doTest()
|
||||||
|
{
|
||||||
|
ok(!isAccessible("statusbarpanel"),
|
||||||
|
"statusbarpanel shouldn't be accessible.");
|
||||||
|
testRole("statusbarpanel-iconic", ROLE_PUSHBUTTON);
|
||||||
|
testRole("statusbarpanel-iconic-text", ROLE_PUSHBUTTON);
|
||||||
|
|
||||||
|
SimpleTest.finish();
|
||||||
|
}
|
||||||
|
|
||||||
|
SimpleTest.waitForExplicitFinish();
|
||||||
|
addA11yLoadEvent(doTest);
|
||||||
|
]]>
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<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=900097"
|
||||||
|
title="statusbarpanel shouldn't be a button accessible">
|
||||||
|
Mozilla Bug 900097
|
||||||
|
</a>
|
||||||
|
<p id="display"></p>
|
||||||
|
<div id="content" style="display: none">
|
||||||
|
</div>
|
||||||
|
<pre id="test">
|
||||||
|
</pre>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<statusbarpanel id="statusbarpanel"></statusbarpanel>
|
||||||
|
<statusbarpanel id="statusbarpanel-iconic" class="statusbarpanel-iconic"></statusbarpanel>
|
||||||
|
<statusbarpanel id="statusbarpanel-iconic-text" class="statusbarpanel-iconic-text"></statusbarpanel>
|
||||||
|
|
||||||
|
</hbox>
|
||||||
|
</window>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user