treetwisty-svg-context-paint-1.xhtml (1321B)
1 <?xml version="1.0"?> 2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?> 3 4 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 5 xmlns:html="http://www.w3.org/1999/xhtml"> 6 <image src="treetwisty-context-paint.svg" id="preload-image"/> 7 <html:style> 8 #preload-image { 9 visibility: collapse; 10 } 11 12 #preload-image, 13 treechildren::-moz-tree-twisty { 14 -moz-appearance: none !important; 15 -moz-context-properties: fill, fill-opacity, stroke, stroke-opacity !important; 16 fill: green; 17 fill-opacity: 0.5; 18 stroke: purple; 19 stroke-opacity: 0.2; 20 list-style-image: url(treetwisty-context-paint.svg); 21 } 22 </html:style> 23 <tree seltype="single" flex="1"> 24 <treecols> 25 <treecol flex="1" primary="true"/> 26 </treecols> 27 <treechildren> 28 <treeitem> 29 <treerow> 30 <treecell label="----"></treecell> 31 </treerow> 32 </treeitem> 33 <treeitem container="true" open="true"> 34 <treerow> 35 <treecell label="----"></treecell> 36 </treerow> 37 <treechildren> 38 <treeitem> 39 <treerow> 40 <treecell label="----"></treecell> 41 </treerow> 42 </treeitem> 43 </treechildren> 44 </treeitem> 45 </treechildren> 46 </tree> 47 </window>