summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/472020-1a.xul
blob: 9b80d530fa5cc91120d69b8ec7fd8f612a6fbe27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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>