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

  /external/webkit/Source/WebCore/wml/
WMLInputElement.h 68 virtual String visibleValue() const { return value(); }
  /external/webkit/Source/WebCore/html/
NumberInputType.cpp 220 String NumberInputType::visibleValue() const
232 String NumberInputType::convertFromVisibleValue(const String& visibleValue) const
234 if (visibleValue.isEmpty())
235 return visibleValue;
236 double parsedNumber = parseLocalizedNumber(visibleValue);
237 return isfinite(parsedNumber) ? serializeForNumberType(parsedNumber) : visibleValue;
InputType.cpp 520 String InputType::visibleValue() const
525 String InputType::convertFromVisibleValue(const String& visibleValue) const
527 return visibleValue;
HTMLInputElement.cpp     [all...]

Completed in 225 milliseconds