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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGEnumeration.cpp 80 if (value > maxExposedEnumValue()) {
81 exceptionState.throwTypeError("The enumeration value provided (" + String::number(value) + ") is larger than the largest allowed value (" + String::number(maxExposedEnumValue()) + ").");
SVGEnumeration.h 51 unsigned short value() const { return m_value <= maxExposedEnumValue() ? m_value : 0; }
86 unsigned short maxExposedEnumValue() const { return m_maxExposed; }

Completed in 731 milliseconds