mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-09 08:48:07 +00:00
Bug 708927 - Disable test_focus_menu.xul on Linux for frequent timeouts; rs=tbsaunde
This commit is contained in:
parent
301278eef6
commit
c5fbc6a7a9
@ -22,11 +22,18 @@
|
||||
|
||||
<script type="application/javascript">
|
||||
//gA11yEventDumpID = "eventdump"; // debug stuff
|
||||
gA11yEventDumpToConsole = true; // debug stuff
|
||||
//gA11yEventDumpToConsole = true; // debug stuff
|
||||
|
||||
var gQueue = null;
|
||||
function doTests()
|
||||
{
|
||||
// bug 708927 - test times out on Linux
|
||||
if (LINUX) {
|
||||
todo(false, "Reenable on Linux after fixing bug 708927!");
|
||||
SimpleTest.finish();
|
||||
return;
|
||||
}
|
||||
|
||||
// Test focus events.
|
||||
gQueue = new eventQueue();
|
||||
|
||||
@ -71,9 +78,6 @@
|
||||
// click menuitem to close menu, focus gets back to document
|
||||
gQueue.push(new synthClick("tricycle", new focusChecker(document)));
|
||||
|
||||
enableLogging("focus");
|
||||
gQueue.onFinish = function() { disableLogging(); }
|
||||
|
||||
gQueue.invoke(); // Will call SimpleTest.finish();
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user