| Index: third_party/WebKit/Source/core/dom/DocumentOrderedList.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DocumentOrderedList.cpp b/third_party/WebKit/Source/core/dom/DocumentOrderedList.cpp
|
| index aa853789cf7de3a892642a374057b07c5df8a483..194cd0c99bf194a0abf8fa8b44d4b9076dc961a3 100644
|
| --- a/third_party/WebKit/Source/core/dom/DocumentOrderedList.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DocumentOrderedList.cpp
|
| @@ -47,7 +47,7 @@ void DocumentOrderedList::add(Node* node)
|
| --it;
|
| Node* n = *it;
|
| unsigned short position = n->compareDocumentPosition(node, Node::TreatShadowTreesAsComposed);
|
| - if (position & Node::DOCUMENT_POSITION_FOLLOWING) {
|
| + if (position & Node::kDocumentPositionFollowing) {
|
| m_nodes.insertBefore(followingNode, node);
|
| return;
|
| }
|
|
|