mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
a33fb40552
This was a regression from bug 133165 which I noticed while working on bug 480888, but wished to fix in a separate patch (despite that it would have been slightly easier to fix it in the same patch).
32 lines
850 B
XML
32 lines
850 B
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
>
|
|
|
|
<html:style>
|
|
<![CDATA[
|
|
|
|
treechildren::-moz-tree-row(odd) {
|
|
outline: 2px solid blue;
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
]]>
|
|
</html:style>
|
|
|
|
<tree seltype="single" flex="1">
|
|
<treecols>
|
|
<treecol flex="1"/>
|
|
<treecol flex="1"/>
|
|
</treecols>
|
|
<treechildren>
|
|
<treeitem><treerow><treecell label="One"/><treecell label="Two"/></treerow></treeitem>
|
|
<treeitem><treerow><treecell label="One"/><treecell label="Two"/></treerow></treeitem>
|
|
<treeitem><treerow><treecell label="One"/><treecell label="Two"/></treerow></treeitem>
|
|
</treechildren>
|
|
</tree>
|
|
|
|
</window>
|