| Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| index 8bd6fb770155873f94a373b484a3e538e2156955..bf2ab17e8ecd5fadad0c69f8af734a37c56ebbc5 100644
|
| --- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| @@ -42,7 +42,6 @@ inline ProcessingInstruction::ProcessingInstruction(Document& document, const St
|
| , m_target(target)
|
| , m_loading(false)
|
| , m_alternate(false)
|
| - , m_createdByParser(false)
|
| , m_isCSS(false)
|
| , m_isXSL(false)
|
| , m_listenerForXSLT(nullptr)
|
| @@ -267,7 +266,7 @@ Node::InsertionNotificationRequest ProcessingInstruction::insertedInto(Container
|
| String charset;
|
| bool isValid = checkStyleSheet(href, charset);
|
| if (!DocumentXSLT::processingInstructionInsertedIntoDocument(document(), this))
|
| - document().styleEngine().addStyleSheetCandidateNode(this, m_createdByParser);
|
| + document().styleEngine().addStyleSheetCandidateNode(this);
|
| if (isValid)
|
| process(href, charset);
|
| return InsertionDone;
|
|
|