Bug 418175: Report a test failure if screen resolution is small enough that the tests will likely fail. r=enndeakin

This commit is contained in:
ajschult@verizon.net 2008-02-29 23:01:13 -08:00
parent b09df8cfb8
commit 8bf4644567

View File

@ -5,6 +5,10 @@ var gScreenX = -1, gScreenY = -1;
function runTests()
{
if (screen.height < 768) {
ok(false, "popup tests are likely to fail for screen heights less than 768 pixels");
}
gMenuPopup = document.getElementById("thepopup");
gTrigger = document.getElementById("trigger");