HomeSort by relevance Sort by last modified time
    Searched defs:tabindex (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/wml/
WMLElement.cpp 76 int tabindex = 0; local
77 if (parseHTMLInteger(indexstring, tabindex)) {
78 // Clamp tabindex to the range of 'short' to match Firefox's behavior.
79 setTabIndexExplicitly(max(static_cast<int>(std::numeric_limits<short>::min()), min(tabindex, static_cast<int>(std::numeric_limits<short>::max()))));
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 150 int tabindex = 0; local
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();
    [all...]

Completed in 146 milliseconds