Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/xul/test/chrome.toml
<?xml version="1.0"?>
<!--
-->
onload="test()">
<!-- test results are displayed in the html:body -->
</body>
<hbox id="container"><label value="test" id=""/></hbox>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
function test() {
var c = document.getElementById("container");
var clone = c.cloneNode(true);
document.documentElement.appendChild(clone);
ok(true, "This shouldn't crash!");
}
]]>
</script>
</window>