From 3065f2781992243ef76e30c22cd39d94c6c2afc0 Mon Sep 17 00:00:00 2001 From: Ed Morley Date: Wed, 16 May 2012 20:46:11 +0100 Subject: [PATCH] Bug 668716 - Disable test_bug632379.xul on Mac for now, for too many unexpected passes --- layout/generic/test/test_bug632379.xul | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/layout/generic/test/test_bug632379.xul b/layout/generic/test/test_bug632379.xul index e7053170ff78..bbece27415ba 100644 --- a/layout/generic/test/test_bug632379.xul +++ b/layout/generic/test/test_bug632379.xul @@ -180,10 +180,11 @@ function snapshot(elem) synthesizeKey("VK_LEFT", {}); synthesizeKey("9", {}); } else { - // Bug 668716: This test fails on Mac since it was ported to chrome - (navigator.platform.indexOf("Mac") == -1 ? is : todo_is)( - pos[1], pos[0], "Popup should open in the same place when the menu is scrolled" - ); + if (navigator.platform.indexOf("Mac") == -1) { + is(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(); } }