mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-02 01:48:05 +00:00
Bug 766112 - intermittent failure of events/test_docload.xul, r=tbsaunde
This commit is contained in:
parent
295606e347
commit
7986a1c2b0
@ -110,7 +110,8 @@
|
||||
|
||||
function getNestedDoc()
|
||||
{
|
||||
return currentTabDocument().getElementsByTagName("iframe")[0].firstChild;
|
||||
var iframeNodes = currentTabDocument().getElementsByTagName("iframe");
|
||||
return iframeNodes ? iframeNodes[0].firstChild : null;
|
||||
}
|
||||
}
|
||||
|
||||
@ -187,7 +188,7 @@
|
||||
////////////////////////////////////////////////////////////////////////////
|
||||
// Tests
|
||||
|
||||
gA11yEventDumpToConsole = true; // debug
|
||||
//gA11yEventDumpToConsole = true; // debug
|
||||
//gA11yEventDumpFeature = "parentchain:reorder";
|
||||
|
||||
var gQueue = null;
|
||||
|
Loading…
Reference in New Issue
Block a user