summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/349355-1.html
blob: 627bdc6d61b0742cb2460c0cc2c84aa68babb2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<html class="reftest-wait">
<head>
<script>

function zap()
{
  var j = document.getElementById("j");
  j.remove();
  document.documentElement.removeAttribute("class");
}

</script>

</head>
<body onload="setTimeout(zap, 1);">


<div>

  <form>
    <fieldset>
      <div id="j">
        <div>
          <div>
            <span>
             <input type="submit">
             <label></label>
            </span>
          </div>
        </div>

      </div>
    </fieldset>
  </form>

</div>


</body>

</html>