diff --git a/content/html/content/reftests/autofocus/input-load.html b/content/html/content/reftests/autofocus/input-load.html index 7f60433ed13..d40b49177aa 100644 --- a/content/html/content/reftests/autofocus/input-load.html +++ b/content/html/content/reftests/autofocus/input-load.html @@ -4,7 +4,7 @@ diff --git a/content/xbl/crashtests/crashtests.list b/content/xbl/crashtests/crashtests.list index c3fb6223912..5fe71ece792 100644 --- a/content/xbl/crashtests/crashtests.list +++ b/content/xbl/crashtests/crashtests.list @@ -4,7 +4,7 @@ load 226744-1.xhtml load 232095-1.xul load 277523-1.xhtml load 277950-1.xhtml -load 336744-1.html +skip-if(browserIsRemote) load 336744-1.html # no remote support for xul popups, bug 617653 asserts(0-1) load 336960-1.html # maybe bug 429586 load 342954-1.xhtml load 342954-2.xhtml diff --git a/dom/ipc/TabChild.cpp b/dom/ipc/TabChild.cpp index 79d4e66e462..a599b7e7b75 100644 --- a/dom/ipc/TabChild.cpp +++ b/dom/ipc/TabChild.cpp @@ -284,9 +284,8 @@ TabChild::GetVisibility(PRBool* aVisibility) NS_IMETHODIMP TabChild::SetVisibility(PRBool aVisibility) { - NS_NOTREACHED("TabChild::SetVisibility not supported in TabChild"); - - return NS_ERROR_NOT_IMPLEMENTED; + // should the platform support this? Bug 666365 + return NS_OK; } NS_IMETHODIMP diff --git a/dom/ipc/test.xul b/dom/ipc/test.xul index 6d36406e8e4..d1cc5adfbc2 100644 --- a/dom/ipc/test.xul +++ b/dom/ipc/test.xul @@ -61,8 +61,7 @@ function randomClick() { // First focus the remote frame, then dispatch click. This way remote frame gets focus before // mouse event. - document.getElementById('page').QueryInterface(Components.interfaces.nsIFrameLoaderOwner) - .frameLoader.activateRemoteFrame(); + document.getElementById('page').focus(); var frameLoader = document.getElementById('page').QueryInterface(Components.interfaces.nsIFrameLoaderOwner).frameLoader; var x = parseInt(Math.random() * 100); var y = parseInt(Math.random() * 100); @@ -73,8 +72,7 @@ function keyPress() { // First focus the remote frame, then dispatch click. This way remote frame gets focus before // mouse event. - document.getElementById('page').QueryInterface(Components.interfaces.nsIFrameLoaderOwner) - .frameLoader.activateRemoteFrame(); + document.getElementById('page').focus(); var frameLoader = document.getElementById('page').QueryInterface(Components.interfaces.nsIFrameLoaderOwner).frameLoader; var keyCode = Components.interfaces.nsIDOMKeyEvent.DOM_VK_A; @@ -280,7 +278,6 @@ oncommand="document.getElementById('page').QueryInterface(Components.interfaces.nsIFrameLoaderOwner).frameLoader.delayRemoteDialogs = this.checked;"/> - +