| Index: third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
|
| diff --git a/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp b/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
|
| index b06190bcc4c2952f51b9d2f39e7f1367f914a087..0d1d1facb6c0c854465c0c376e2f43acd9554afe 100644
|
| --- a/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
|
| +++ b/third_party/WebKit/Source/core/xml/DocumentXSLT.cpp
|
| @@ -120,7 +120,7 @@ void DocumentXSLT::applyXSLTransform(Document& document, ProcessingInstruction*
|
| ProcessingInstruction* DocumentXSLT::findXSLStyleSheet(Document& document)
|
| {
|
| for (Node* node = document.firstChild(); node; node = node->nextSibling()) {
|
| - if (node->getNodeType() != Node::PROCESSING_INSTRUCTION_NODE)
|
| + if (node->getNodeType() != Node::kProcessingInstructionNode)
|
| continue;
|
|
|
| ProcessingInstruction* pi = toProcessingInstruction(node);
|
|
|