| Index: Source/core/dom/ElementRareData.h
|
| diff --git a/Source/core/dom/ElementRareData.h b/Source/core/dom/ElementRareData.h
|
| index 6a42af6371e8968789fc04524926269bcac4bb29..31c47bb785c2f4592718a33db9e3a34b7f3d03d6 100644
|
| --- a/Source/core/dom/ElementRareData.h
|
| +++ b/Source/core/dom/ElementRareData.h
|
| @@ -57,15 +57,12 @@ public:
|
| void setTabIndexExplicitly(short index)
|
| {
|
| m_tabindex = index;
|
| - // tabStop is overridden by setting tabindex.
|
| - m_tabStop = (m_tabindex >= 0);
|
| setElementFlag(TabIndexWasSetExplicitly, true);
|
| }
|
|
|
| void clearTabIndexExplicitly()
|
| {
|
| m_tabindex = 0;
|
| - m_tabStop = true;
|
| clearElementFlag(TabIndexWasSetExplicitly);
|
| }
|
|
|
|
|