gecko/layout/reftests/bugs/931464-1.html
Robert O'Callahan d147a68c2c Bug 931464. Part 1: GetFieldSetBlockFrame needs to drill down through a scrollframe if necessary. r=mats
--HG--
extra : rebase_source : 858213f65b5bd7d8872afd8205424c3bfdfe1e98
2013-11-05 23:04:00 -08:00

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>