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