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

Unified Diff: Source/core/dom/ElementRareData.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/Element.idl ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/ElementRareData.h
diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
index b2657f238fcef40d82cb410bf6ab20b0f504c4c3..5f998e1a175df798dd48a5342cb1e2fa5b20f95f 100644
--- a/Source/core/dom/ElementRareData.h
+++ b/Source/core/dom/ElementRareData.h
@@ -65,10 +65,6 @@ public:
clearElementFlag(TabIndexWasSetExplicitly);
}
- bool tabStop() const { return m_tabStop; }
-
- void setTabStop(bool flag) { m_tabStop = flag; }
-
CSSStyleDeclaration& ensureInlineCSSStyleDeclaration(Element* ownerElement);
void clearShadow() { m_shadow = nullptr; }
@@ -133,7 +129,6 @@ public:
private:
short m_tabindex;
- unsigned short m_tabStop : 1;
unsigned short m_proxyCount : 10;
LayoutSize m_minimumSizeForResizing;
@@ -166,7 +161,6 @@ inline LayoutSize defaultMinimumSizeForResizing()
inline ElementRareData::ElementRareData(LayoutObject* layoutObject)
: NodeRareData(layoutObject)
, m_tabindex(0)
- , m_tabStop(true)
, m_proxyCount(0)
, m_minimumSizeForResizing(defaultMinimumSizeForResizing())
{
« no previous file with comments | « Source/core/dom/Element.idl ('k') | Source/core/dom/Node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698