| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 775c5e9c6b7aa73e3290e3aeb92a7b64ba32a130..2a7cd8e854e74c373908bb2cfe656c0739d3a8f2 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -926,6 +926,12 @@ Node* Node::focusDelegate()
|
| return this;
|
| }
|
|
|
| +bool Node::shouldHaveFocusAppearance() const
|
| +{
|
| + ASSERT(focused());
|
| + return true;
|
| +}
|
| +
|
| unsigned Node::nodeIndex() const
|
| {
|
| Node *_tempNode = previousSibling();
|
| @@ -2556,6 +2562,10 @@ void Node::defaultEventHandler(Event* event)
|
| }
|
| }
|
|
|
| +void Node::willCallDefaultEventHandler(const Event&)
|
| +{
|
| +}
|
| +
|
| bool Node::willRespondToMouseMoveEvents()
|
| {
|
| if (isDisabledFormControl(this))
|
|
|