mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
28 lines
608 B
HTML
28 lines
608 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:xbl="http://www.mozilla.org/xbl">
|
|
<head>
|
|
<style>
|
|
.forced { display:block; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<xbl:children>
|
|
FAIL
|
|
</xbl:children>
|
|
|
|
<xbl:children class="forced">
|
|
FAIL
|
|
</xbl:children>
|
|
|
|
<xbl:children />
|
|
|
|
<script>
|
|
var third = document.body.children[2];
|
|
third.appendChild(document.createTextNode("FAIL"));
|
|
|
|
var fourth = document.createElementNS("http://www.mozilla.org/xbl", "children");
|
|
fourth.appendChild(document.createTextNode("FAIL"));
|
|
document.body.appendChild(fourth);
|
|
</script>
|
|
</body>
|
|
</html>
|