Debugging bug 536603: run tests twice to see if the problem is timing-related.

--HG--
extra : transplant_source : %0DU%3C%00%B5K%AF%99%1E%D8%C3W%CB%FDz%03b%DD%A9%82
This commit is contained in:
L. David Baron 2009-12-23 20:07:25 -05:00
parent ef7cd172dd
commit 0b044b907e

View File

@ -133,7 +133,11 @@ SimpleTest.waitForExplicitFinish();
window.onload = function() {
check_iframe(document.getElementById("quirks"));
check_iframe(document.getElementById("standards"));
SimpleTest.finish();
setTimeout(function() {
check_iframe(document.getElementById("quirks"));
check_iframe(document.getElementById("standards"));
SimpleTest.finish();
}, 5000);
};
</script>
</body>