| Index: Source/core/editing/Position.h
|
| diff --git a/Source/core/editing/Position.h b/Source/core/editing/Position.h
|
| index a0da64b8fe62b99b753cfd008300a0748d6508fb..492304b6250c1c94a5567fc8190903ae3f4898c3 100644
|
| --- a/Source/core/editing/Position.h
|
| +++ b/Source/core/editing/Position.h
|
| @@ -160,11 +160,6 @@ public:
|
|
|
| Document* document() const { return m_anchorNode ? &m_anchorNode->document() : 0; }
|
| bool inDocument() const { return m_anchorNode && m_anchorNode->inDocument(); }
|
| - Element* rootEditableElement() const
|
| - {
|
| - Node* container = computeContainerNode();
|
| - return container ? container->rootEditableElement() : 0;
|
| - }
|
|
|
| bool isNull() const { return !m_anchorNode; }
|
| bool isNotNull() const { return m_anchorNode; }
|
|
|