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-03-01 07:01:13 +00:00
Родитель 3a2d55067c
Коммит 8a5fd1a2fd
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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");