| Index: Source/core/dom/Node.h
|
| diff --git a/Source/core/dom/Node.h b/Source/core/dom/Node.h
|
| index 34b36e2ff927f10414e8164a09c582d756edf2e8..7e6bc65f550156a0dba0a749d03d767fd02aa7d8 100644
|
| --- a/Source/core/dom/Node.h
|
| +++ b/Source/core/dom/Node.h
|
| @@ -360,10 +360,6 @@ public:
|
| bool active() const { return isUserActionElement() && isUserActionElementActive(); }
|
| bool inActiveChain() const { return isUserActionElement() && isUserActionElementInActiveChain(); }
|
| bool hovered() const { return isUserActionElement() && isUserActionElementHovered(); }
|
| - // Note: As a shadow host whose tabStop=false may become focused state when an inner element
|
| - // gets focused in its shadow, in that case more than one elements in a document can return
|
| - // true for |focused()|. Use Element::isFocusedElementInDocument() or Document::focusedElement()
|
| - // to check which element is exactly focused.
|
| bool focused() const { return isUserActionElement() && isUserActionElementFocused(); }
|
|
|
| bool needsAttach() const { return styleChangeType() == NeedsReattachStyleChange; }
|
|
|