Index: Source/core/editing/TextIterator.h |
diff --git a/Source/core/editing/TextIterator.h b/Source/core/editing/TextIterator.h |
index 9d73d8add4d2efc3cdb64e76554a2bc2982e141d..6dee1b541eab1a0db2bb6e7bae7fb4dcc9d599c7 100644 |
--- a/Source/core/editing/TextIterator.h |
+++ b/Source/core/editing/TextIterator.h |
@@ -44,7 +44,8 @@ enum TextIteratorBehavior { |
TextIteratorEmitsOriginalText = 1 << 3, |
TextIteratorStopsOnFormControls = 1 << 4, |
TextIteratorEmitsImageAltText = 1 << 5, |
- TextIteratorEntersAuthorShadowRoots = 1 << 6 |
+ TextIteratorEntersAuthorShadowRoots = 1 << 6, |
+ TextIteratorBehavesAsIfNodesFollowing = 1 << 7, |
}; |
typedef unsigned TextIteratorBehaviorFlags; |
@@ -214,6 +215,7 @@ private: |
bool m_emitsImageAltText; |
bool m_entersAuthorShadowRoots; |
+ bool m_hasNodesFollowing; |
}; |
// Iterates through the DOM range, returning all the text, and 0-length boundaries |