Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(695)

Unified Diff: Source/core/dom/Element.h

Issue 1152623012: WIP: delegatesFocus (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « Source/core/dom/ContainerNode.cpp ('k') | Source/core/dom/Element.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698