Home | History | Annotate | Download | only in html

Lines Matching defs:tabIndex

150         int tabindex = 0;
153 } else if (parseHTMLInteger(indexstring, tabindex)) {
154 // Clamp tabindex to the range of 'short' to match Firefox's behavior.
155 setTabIndexExplicitly(max(static_cast<int>(std::numeric_limits<short>::min()), min(tabindex, static_cast<int>(std::numeric_limits<short>::max()))));
751 short HTMLElement::tabIndex() const
754 return Element::tabIndex();