Searched defs:tabindex (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/wml/
H A DWMLElement.cpp76 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/
H A DHTMLElement.cpp150 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()))));

Completed in 298 milliseconds