summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/931464-1.html
blob: a2168ae5449e744409e84975f13651c505ab1bf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html class="reftest-wait">
<body>
<fieldset id="f" style="overflow: auto;"></fieldset>
<script>
function boom()
{
  var f = document.getElementById("f");
  var s = document.createElement("span");
  s.textContent = "Hello Kitty";
  f.appendChild(s);
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", boom);
</script>
</body>
</html>