| Index: Source/core/dom/Element.h
|
| diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h
|
| index 6cca778a4b41dded08715ca5236b39891bb9f40f..24d598b0cfc59925326958217178c91404f84d75 100644
|
| --- a/Source/core/dom/Element.h
|
| +++ b/Source/core/dom/Element.h
|
| @@ -79,9 +79,8 @@ enum ElementFlags {
|
| ContainsFullScreenElement = 1 << 3,
|
| IsInTopLayer = 1 << 4,
|
| HasPendingResources = 1 << 5,
|
| - TabStopWasSetExplicitly = 1 << 6,
|
|
|
| - NumberOfElementFlags = 7, // Required size of bitfield used to store the flags.
|
| + NumberOfElementFlags = 6, // Required size of bitfield used to store the flags.
|
| };
|
|
|
| typedef WillBeHeapVector<RefPtrWillBeMember<Attr>> AttrNodeList;
|
| @@ -375,9 +374,6 @@ public:
|
| virtual bool supportsFocus() const;
|
| // Whether the node can actually be focused.
|
| bool isFocusable() const;
|
| - bool tabStop() const;
|
| - void setTabStop(bool);
|
| - void setTabStopInternal(bool);
|
| bool isFocusedElementInDocument() const;
|
| virtual bool isKeyboardFocusable() const;
|
| virtual bool isMouseFocusable() const;
|
|
|