diff options
author | Moonchild <moonchild@palemoon.org> | 2020-07-01 12:57:29 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-07-01 12:57:29 +0000 |
commit | fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de (patch) | |
tree | 29ef38e1656883879b306f750dfec5a3281f5c94 /dom/xslt | |
parent | c7330b5eb48cdd69b06e5f55643ea4c94303381f (diff) | |
parent | 9056191e67055c5e96ecc352e592ea9ae94a2236 (diff) | |
download | UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.gz UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.lz UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.tar.xz UXP-fd602fbffbaf8e7d7e58c9ffe9b0b188cb7c65de.zip |
Merge branch 'es-modules-work'
Diffstat (limited to 'dom/xslt')
-rw-r--r-- | dom/xslt/xslt/txMozillaXMLOutput.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/xslt/xslt/txMozillaXMLOutput.cpp b/dom/xslt/xslt/txMozillaXMLOutput.cpp index 069413d97..704d8ac11 100644 --- a/dom/xslt/xslt/txMozillaXMLOutput.cpp +++ b/dom/xslt/xslt/txMozillaXMLOutput.cpp @@ -7,7 +7,6 @@ #include "nsIDocument.h" #include "nsIDocShell.h" -#include "nsScriptLoader.h" #include "nsIDOMDocument.h" #include "nsIDOMDocumentType.h" #include "nsIScriptElement.h" @@ -31,6 +30,7 @@ #include "mozilla/css/Loader.h" #include "mozilla/dom/Element.h" #include "mozilla/dom/EncodingUtils.h" +#include "mozilla/dom/ScriptLoader.h" #include "nsContentUtils.h" #include "txXMLUtils.h" #include "nsContentSink.h" @@ -230,7 +230,7 @@ txMozillaXMLOutput::endDocument(nsresult aResult) MOZ_ASSERT(mDocument->GetReadyStateEnum() == nsIDocument::READYSTATE_LOADING, "Bad readyState"); mDocument->SetReadyStateInternal(nsIDocument::READYSTATE_INTERACTIVE); - nsScriptLoader* loader = mDocument->ScriptLoader(); + ScriptLoader* loader = mDocument->ScriptLoader(); if (loader) { loader->ParsingComplete(false); } @@ -416,7 +416,7 @@ txMozillaXMLOutput::startDocument() } if (mCreatingNewDocument) { - nsScriptLoader* loader = mDocument->ScriptLoader(); + ScriptLoader* loader = mDocument->ScriptLoader(); if (loader) { loader->BeginDeferringScripts(); } @@ -857,7 +857,7 @@ txMozillaXMLOutput::createResultDocument(const nsSubstring& aName, int32_t aNsID } // Set up script loader of the result document. - nsScriptLoader *loader = mDocument->ScriptLoader(); + ScriptLoader *loader = mDocument->ScriptLoader(); if (mNotifier) { loader->AddObserver(mNotifier); } |