layout/base/crashtests/337476-1.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/base/crashtests/337476-1.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,32 @@
     1.4 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait">
     1.5 +
     1.6 +
     1.7 +<script>
     1.8 +
     1.9 +<![CDATA[
    1.10 +
    1.11 +window.addEventListener("load", init, false);
    1.12 +
    1.13 +function init()
    1.14 +{
    1.15 +  document.getElementById("n1").style.display = "table-caption";
    1.16 +  setTimeout(init2, 30);
    1.17 +}
    1.18 +
    1.19 +function init2()
    1.20 +{
    1.21 +  document.getElementById("n2").style.display = "table-caption";
    1.22 +  document.documentElement.removeAttribute("class");
    1.23 +}
    1.24 +
    1.25 +]]>
    1.26 +
    1.27 +</script>
    1.28 +
    1.29 +
    1.30 +  <hbox>
    1.31 +    <vbox flex="1" id="n1"/>
    1.32 +    <spacer flex="1" id="n2"/>
    1.33 +  </hbox>
    1.34 +
    1.35 +</window>

mercurial