Bug 691580 - Disable part of test_focus_contextmenu.xul for too many intermittent failures; rs=tbsaunde

This commit is contained in:
Ed Morley 2012-09-28 17:52:53 +01:00
Родитель abe8d302c9
Коммит 301278eef6
1 изменённых файлов: 7 добавлений и 7 удалений

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

@ -22,7 +22,7 @@
<script type="application/javascript">
//gA11yEventDumpID = "eventdump"; // debug stuff
gA11yEventDumpToConsole = true; // debug stuff
//gA11yEventDumpToConsole = true; // debug stuff
var winLowerThanVista = navigator.platform.indexOf("Win") == 0;
if (winLowerThanVista) {
@ -56,12 +56,12 @@
gQueue.push(new synthDownKey("contextmenu", new focusChecker("item1")));
gQueue.push(new synthDownKey("item1", new focusChecker("item2")));
gQueue.push(new synthRightKey("item2", new focusChecker("item2.1")));
gQueue.push(new synthEscapeKey("item2.1", new focusChecker("item2")));
gQueue.push(new synthEscapeKey("item2", new focusChecker("button")));
enableLogging("focus");
gQueue.onFinish = function() { disableLogging(); }
if (WIN) {
todo(false, "synthEscapeKey for item2.1 and item2 disabled due to bug 691580");
} else {
gQueue.push(new synthEscapeKey("item2.1", new focusChecker("item2")));
gQueue.push(new synthEscapeKey("item2", new focusChecker("button")));
}
gQueue.invoke(); // Will call SimpleTest.finish();
}