Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
<?xml-stylesheet type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
<!--
-->
<window title="Mozilla Bug 460942"
onload="runTests()"
<!-- test results are displayed in the html:body -->
target="_blank">Mozilla Bug 460942</a>
</body>
<!-- test code goes here -->
<richlistbox>
<richlistitem id="item1">
<label value="one"/>
<box>
<label value="two"/>
</box>
</richlistitem>
<richlistitem id="item2"><description>one</description><description>two</description></richlistitem>
</richlistbox>
<script type="application/javascript">
<![CDATA[
/** Test for Bug 460942 **/
function runTests() {
is ($("item1").label, "one two");
is ($("item2").label, "");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
]]>
</script>
</window>