tenfourfox/layout/xul/tree/crashtests/601427.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

31 lines
555 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<script>
var onPaintFunctions =
[
function() { document.documentElement.style.MozAppearance = "treeheadersortarrow"; },
function() { document.documentElement.style.position = "fixed"; },
function() { document.documentElement.removeAttribute("class"); }
];
var i = 0;
function advance()
{
var f = onPaintFunctions[i++];
if (f)
f();
}
function start()
{
window.addEventListener("MozAfterPaint", advance, true);
advance();
}
window.addEventListener("load", start, false);
</script>
</html>