Crash test for bug 601427. a=TEST

This commit is contained in:
Jesse Ruderman 2010-10-11 00:07:00 +02:00
parent f1222d224a
commit d0a2a35c8c
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<!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>

View File

@ -16,3 +16,4 @@ load 430394-1.xul
load 454186-1.xul
load 479931-1.xhtml
load 509602-1.xul
load 601427.html