Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: js/xpconnect/tests/chrome/chrome.toml
<?xml version="1.0"?>
type="text/css"?>
<!--
-->
<!-- test results are displayed in the html:body -->
<!-- test code goes here -->
<script type="application/javascript"><![CDATA[
function go() {
var doc = document.getElementById('ifr').contentDocument;
var list = doc.getElementsByTagName("body");
var zeroAsString = "0";
is(typeof list[zeroAsString], "object",
"can lookup nodelist items by string");
is(typeof list[0], "object",
"can lookup nodelist items by integer after the lookup by string");
SimpleTest.finish();
}
SimpleTest.waitForExplicitFinish();
]]></script>
<iframe type="content" src="about:blank" onload="go()" id="ifr" />
</body>
</window>