Landing fix for bug 198533. Patch by smaug@welho.com. Making nsXULElement inherit nsGenericElement. r=bugmail@sicking.cc, sr=jst@mozilla.org

git-svn-id: svn://10.0.0.236/trunk@167743 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%mozilla.jstenback.com
2005-01-14 19:30:55 +00:00
parent eda943392e
commit 0888e05779
6 changed files with 316 additions and 1088 deletions

View File

@@ -67,6 +67,7 @@
#include "nsIURI.h"
#include "nsIIOService.h"
#include "nsNetUtil.h"
#include "nsIProgressEventSink.h"
#include "nsIContentViewerContainer.h"
#include "nsIContentViewer.h"
#include "nsIMarkupDocumentViewer.h"
@@ -3451,6 +3452,16 @@ nsHTMLDocument::CreateAndAddWyciwygChannel(void)
rv = loadGroup->AddRequest(mWyciwygChannel, nsnull);
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "Failed to add request to load group.");
/*
nsCOMPtr<nsIInterfaceRequestor> interfaceRequestor;
loadGroup->GetNotificationCallbacks(getter_AddRefs(interfaceRequestor));
nsCOMPtr<nsIProgressEventSink> progressSink =
do_GetInterface(interfaceRequestor);
progressSink->OnProgress(mWyciwygChannel, nsnull, 1, -1);
*/
}
return rv;