Bug 718235. (Av1) events/test_focus_general.html: Disable synthShiftTab() check on SeaMonkey. r=surkov.alexander.

This commit is contained in:
Serge Gautherie 2012-02-25 06:18:27 +01:00
parent 79ad489863
commit d19b021256

View File

@ -106,10 +106,14 @@
gQueue.push(new synthContextMenu(editableDoc, new contextMenuChecker()));
gQueue.push(new synthDownKey(editableDoc, new focusContextMenuItemChecker()));
gQueue.push(new synthEscapeKey(editableDoc, new focusChecker(editableDoc)));
if (SEAMONKEY) {
todo(false, "shift tab from editable document fails on (Windows) SeaMonkey! (Bug 718235)");
} else {
if (LINUX)
todo(false, "shift tab from editable document Fails on linux!");
todo(false, "shift tab from editable document fails on linux!");
else
gQueue.push(new synthShiftTab("link", new focusChecker("link")));
} // ! SEAMONKEY
gQueue.invoke(); // Will call SimpleTest.finish();
}