mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
232c266ced
--HG-- extra : rebase_source : 858213f65b5bd7d8872afd8205424c3bfdfe1e98
18 lines
402 B
HTML
18 lines
402 B
HTML
<!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>
|