Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 2 | |
michael@0 | 3 | <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 4 | onload="boom()" class="reftest-wait"> |
michael@0 | 5 | |
michael@0 | 6 | |
michael@0 | 7 | <script> |
michael@0 | 8 | function boom() |
michael@0 | 9 | { |
michael@0 | 10 | try { |
michael@0 | 11 | var tree = document.getElementById("tree"); |
michael@0 | 12 | var col = tree.treeBoxObject.columns.getFirstColumn(); |
michael@0 | 13 | var treecols = document.getElementById("treecols"); |
michael@0 | 14 | treecols.parentNode.removeChild(treecols); |
michael@0 | 15 | var x = col.x; |
michael@0 | 16 | } finally { |
michael@0 | 17 | document.documentElement.removeAttribute("class"); |
michael@0 | 18 | } |
michael@0 | 19 | } |
michael@0 | 20 | </script> |
michael@0 | 21 | |
michael@0 | 22 | |
michael@0 | 23 | <tree rows="6" id="tree"> |
michael@0 | 24 | |
michael@0 | 25 | <treecols id="treecols"> |
michael@0 | 26 | <treecol id="firstname" label="First Name"/> |
michael@0 | 27 | </treecols> |
michael@0 | 28 | |
michael@0 | 29 | <treechildren id="treechildren"> |
michael@0 | 30 | <treeitem> |
michael@0 | 31 | <treerow> |
michael@0 | 32 | <treecell label="Bob"/> |
michael@0 | 33 | </treerow> |
michael@0 | 34 | </treeitem> |
michael@0 | 35 | </treechildren> |
michael@0 | 36 | |
michael@0 | 37 | </tree> |
michael@0 | 38 | |
michael@0 | 39 | </window> |