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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user