gecko-dev/dom/xul/crashtests/363791-1.xhtml
Brian Grinstead 30b9da5519 Bug 1623992 - Automated rewrite from chrome://global/skin/ to chrome://global/skin/global.css in markup r=marionette-reviewers,perftest-reviewers,mossop,whimboo,sparky
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
2020-04-03 22:23:23 +00:00

45 lines
919 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="setTimeout(boom, 30);" class="reftest-wait">
<script>
function boom()
{
var tree = document.getElementById("tree");
var treecols = document.getElementById("treecols");
var treechildren = document.getElementById("treechildren");
tree.appendChild(treechildren); // no real change
function boom2() {
treecols.parentNode.removeChild(treecols);
document.documentElement.removeAttribute("class");
}
setTimeout(boom2, 30);
}
</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>