gecko/layout/reftests/xul/tree-row-outline-1-ref.xul
L. David Baron a33fb40552 Bug 434102: Make outlines behave reasonably on XUL tree pseudo-elements again. r=roc
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).
2014-02-17 20:07:46 -08:00

31 lines
819 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) {
border: 2px solid blue;
}
]]>
</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>