Backing out the patch to bug 83536.

I will reland this when 1.6a re-opens.
r+sr=jst@netscape.com
a=chofmann
This commit is contained in:
caillon%returnzero.com 2006-04-20 03:38:39 +00:00
Родитель 425525c5f4
Коммит 1710aeb74a
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -50,6 +50,7 @@
#include "nsIJSContextStack.h"
#include "nsIScriptSecurityManager.h"
#include "nsICodebasePrincipal.h"
#include "nsIURI.h"
nsDOMSerializer::nsDOMSerializer()
@ -155,8 +156,11 @@ nsresult CheckSameOrigin(nsIDOMNode *aRoot)
doc->GetPrincipal(getter_AddRefs(principal));
if (principal) {
principal->GetURI(getter_AddRefs(root_uri));
nsCOMPtr<nsICodebasePrincipal> codebase_principal =
do_QueryInterface(principal);
if (codebase_principal) {
codebase_principal->GetURI(getter_AddRefs(root_uri));
}
if (root_uri) {