| Index: third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
|
| index b5696eb78e6cd889ffaabbfcb03305a75b50392e..03b57b938fd0596110f6e177e0df273ff9de066c 100644
|
| --- a/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/NodeIteratorBase.cpp
|
| @@ -37,8 +37,8 @@ NodeIteratorBase::NodeIteratorBase(Node* rootNode,
|
|
|
| unsigned NodeIteratorBase::acceptNode(Node* node,
|
| ExceptionState& exceptionState) const {
|
| - // The bit twiddling here is done to map DOM node types, which are given as integers from
|
| - // 1 through 14, to whatToShow bit masks.
|
| + // The bit twiddling here is done to map DOM node types, which are given as
|
| + // integers from 1 through 14, to whatToShow bit masks.
|
| if (!(((1 << (node->getNodeType() - 1)) & m_whatToShow)))
|
| return NodeFilter::kFilterSkip;
|
| if (!m_filter)
|
|
|