jruderman%hmc.edu fa10b155db Add crashtests
git-svn-id: svn://10.0.0.236/trunk@246496 18797224-902f-48f8-a5cc-f745e15eee43
2008-02-26 00:54:14 +00:00

22 lines
861 B
XML

<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(doe, 30);" class="reftest-wait">
<popupgroup id="a"/>
<listcols>
<nativescrollbar id="c">
<treecols/>
</nativescrollbar>
</listcols>
<script>
function doe() {
document.documentElement.id = "true";
document.documentElement.removeChild(document.getElementById('a'));
var ne = document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'popupgroup');
document.documentElement.appendChild(ne);
document.getElementById('c').appendChild(document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", 'treecols'));
document.documentElement.removeChild(ne);
document.documentElement.removeAttribute("class");
}
</script>
</window>