mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
23 lines
507 B
XML
23 lines
507 B
XML
<?xml version="1.0"?>
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="document.getElementById('o').appendChild(document.createElement('box'));">
|
|
|
|
<style xmlns="http://www.w3.org/1999/xhtml"><![CDATA[
|
|
outer {
|
|
-moz-binding: url(472020-xbl.xml#outer);
|
|
border: 2px solid yellow;
|
|
}
|
|
inner {
|
|
-moz-binding: url(472020-xbl.xml#inner);
|
|
}
|
|
box {
|
|
width: 50px;
|
|
border: 2px solid green;
|
|
}
|
|
]]></style>
|
|
|
|
<outer id="o">
|
|
<box/>
|
|
</outer>
|
|
</window>
|