Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1661)

Unified Diff: Source/core/xml/parser/XMLDocumentParser.cpp

Issue 730003002: Refactoring XSLT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed oilpan build Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/xml/parser/XMLDocumentParser.cpp
diff --git a/Source/core/xml/parser/XMLDocumentParser.cpp b/Source/core/xml/parser/XMLDocumentParser.cpp
index e06c6998513dd3b5ecbc799b41adb80f3fd2f28f..86e30b2da341bd6f131039ac006695a2bb0f989a 100644
--- a/Source/core/xml/parser/XMLDocumentParser.cpp
+++ b/Source/core/xml/parser/XMLDocumentParser.cpp
@@ -53,6 +53,7 @@
#include "core/loader/FrameLoader.h"
#include "core/loader/ImageLoader.h"
#include "core/svg/graphics/SVGImage.h"
+#include "core/xml/DocumentXSLT.h"
#include "core/xml/parser/SharedBufferReader.h"
#include "core/xml/parser/XMLDocumentParserScope.h"
#include "core/xml/parser/XMLParserInput.h"
@@ -102,7 +103,7 @@ static inline AtomicString toAtomicString(const xmlChar* string)
static inline bool hasNoStyleInformation(Document* document)
{
- if (document->sawElementsInKnownNamespaces() || document->transformSourceDocument())
+ if (document->sawElementsInKnownNamespaces() || DocumentXSLT::hasTransformSourceDocument(*document))
return false;
if (!document->frame() || !document->frame()->page())
@@ -1165,7 +1166,7 @@ void XMLDocumentParser::processingInstruction(const String& target, const String
return;
m_sawXSLTransform = !m_sawFirstElement && pi->isXSL();
- if (m_sawXSLTransform && !document()->transformSourceDocument()) {
+ if (m_sawXSLTransform && !DocumentXSLT::hasTransformSourceDocument(*document())) {
// This behavior is very tricky. We call stopParsing() here because we
// want to stop processing the document until we're ready to apply the
// transform, but we actually still want to be fed decoded string pieces

Powered by Google App Engine
This is Rietveld 408576698