| Index: Source/core/dom/Document.h
|
| diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
|
| index f10187a3445e7ddd6d9f0129cea9e0f26a06b2f5..d2c65e793de3af5478cccab4db43662f44e420aa 100644
|
| --- a/Source/core/dom/Document.h
|
| +++ b/Source/core/dom/Document.h
|
| @@ -637,7 +637,7 @@ public:
|
| Node* focusedNode() const { return m_focusedNode.get(); }
|
| UserActionElementSet& userActionElements() { return m_userActionElements; }
|
| const UserActionElementSet& userActionElements() const { return m_userActionElements; }
|
| -
|
| + void didRunFocusedNodeCheker() { m_didPostFocusedNodeChecker = false; }
|
| void getFocusableNodes(Vector<RefPtr<Node> >&);
|
|
|
| // The m_ignoreAutofocus flag specifies whether or not the document has been changed by the user enough
|
| @@ -1270,6 +1270,7 @@ private:
|
|
|
| Color m_textColor;
|
|
|
| + bool m_didPostFocusedNodeChecker;
|
| RefPtr<Node> m_focusedNode;
|
| RefPtr<Node> m_hoverNode;
|
| RefPtr<Element> m_activeElement;
|
|
|