Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
type="text/css"?>
<script src="../common.js" />
<script src="../name.js" />
<script src="../promisified-events.js" />
<script type="application/javascript">
<![CDATA[
/**
* Check name changed a11y event.
*/
async function doTest() {
let changed = waitForEvent(EVENT_NAME_CHANGE, "listitem");
info("Changing childContent value");
getNode("childcontent").setAttribute("value", "Changed.");
await changed;
const buttonWithLabel = getNode("buttonWithLabel");
testName(buttonWithLabel, "initial");
info("Changing buttonWithLabel label");
changed = waitForEvent(EVENT_NAME_CHANGE, buttonWithLabel);
buttonWithLabel.setAttribute("label", "changed");
await changed;
testName(buttonWithLabel, "changed");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
addA11yLoadEvent(doTest);
]]>
</script>
<vbox flex="1" style="overflow: auto;">
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
<richlistbox>
<richlistitem id="listitem">
<description id="childcontent" value="This will be changed."/>
</richlistitem>
</richlistbox>
<button id="buttonWithLabel" label="initial"/>
</vbox>
</window>