mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
30b9da5519
This was generated with ``` cp .gitignore .rgignore rg -l -g '*.{html,xhtml}' 'href="chrome://global/skin/"' | xargs sed -i "" 's/href\="chrome:\/\/global\/skin\/"/href\="chrome:\/\/global\/skin\/global.css"/g' ``` Differential Revision: https://phabricator.services.mozilla.com/D67687 --HG-- extra : moz-landing-system : lando
40 lines
812 B
HTML
40 lines
812 B
HTML
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
|
|
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="boom()" class="reftest-wait">
|
|
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
try {
|
|
var tree = document.getElementById("tree");
|
|
var col = tree.columns.getFirstColumn();
|
|
var treecols = document.getElementById("treecols");
|
|
treecols.parentNode.removeChild(treecols);
|
|
var x = col.x;
|
|
} finally {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
}
|
|
</script>
|
|
|
|
|
|
<tree rows="6" id="tree">
|
|
|
|
<treecols id="treecols">
|
|
<treecol id="firstname" label="First Name"/>
|
|
</treecols>
|
|
|
|
<treechildren id="treechildren">
|
|
<treeitem>
|
|
<treerow>
|
|
<treecell label="Bob"/>
|
|
</treerow>
|
|
</treeitem>
|
|
</treechildren>
|
|
|
|
</tree>
|
|
|
|
</window>
|