Bug 668716 - Disable test_bug632379.xul on Mac for now, for too many unexpected passes

This commit is contained in:
Ed Morley 2012-05-16 20:46:11 +01:00
Родитель e60c2723f3
Коммит 3065f27819
1 изменённых файлов: 5 добавлений и 4 удалений

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

@ -180,10 +180,11 @@ function snapshot(elem)
synthesizeKey("VK_LEFT", {}); synthesizeKey("VK_LEFT", {});
synthesizeKey("9", {}); synthesizeKey("9", {});
} else { } else {
// Bug 668716: This test fails on Mac since it was ported to chrome if (navigator.platform.indexOf("Mac") == -1) {
(navigator.platform.indexOf("Mac") == -1 ? is : todo_is)( is(pos[1], pos[0], "Popup should open in the same place when the menu is scrolled");
pos[1], pos[0], "Popup should open in the same place when the menu is scrolled" } else {
); todo(false, "This test fails on Mac since it was ported to chrome: Bug 668716.");
}
SimpleTest.finish(); SimpleTest.finish();
} }
} }