layout/xul/crashtests/369942-1.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/xul/crashtests/369942-1.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +<html xmlns="http://www.w3.org/1999/xhtml"
     1.5 +      xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     1.6 +      class="reftest-wait">
     1.7 +<head>
     1.8 +
     1.9 +<script>
    1.10 +function boom()
    1.11 +{
    1.12 +  var span = document.getElementById("span");
    1.13 +  var radio = document.getElementById("radio");
    1.14 +  
    1.15 +  radio.appendChild(span);
    1.16 +  
    1.17 +  document.documentElement.removeAttribute("class");
    1.18 +}
    1.19 +</script>
    1.20 +
    1.21 +
    1.22 +<style>
    1.23 +body {
    1.24 +	text-align: center;
    1.25 +	font-size: 9px;
    1.26 +}
    1.27 +</style>
    1.28 +
    1.29 +</head>
    1.30 +
    1.31 +
    1.32 +<body onload="setTimeout(boom, 30);">
    1.33 +
    1.34 +<span id="span"><xul:wizard/><div>Industries</div></span>
    1.35 +
    1.36 +<xul:radio id="radio"/>
    1.37 +
    1.38 +</body>
    1.39 +</html>

mercurial