mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
12 lines
214 B
HTML
12 lines
214 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
|
|
Components.lookupMethod(div.childNodes, "xx");
|
|
}
|
|
|
|
</script>
|
|
<body onload="boom();"></body>
|