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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPrimitiveValue.h 189 bool isViewportPercentageLength() const { return isViewportPercentageLength(static_cast<UnitType>(m_primitiveUnitType)); }
190 static bool isViewportPercentageLength(UnitType type) { return type >= CSS_VW && type <= CSS_VMAX; }
193 return (type >= CSS_EMS && type <= CSS_PC) || type == CSS_REMS || type == CSS_CHS || isViewportPercentageLength(type);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DeferredLegacyStyleInterpolation.cpp 65 return primitiveValue.isFontRelativeLength() || primitiveValue.isViewportPercentageLength();
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
SizesAttributeParser.cpp 41 m_viewportDependant = CSSPrimitiveValue::isViewportPercentageLength(startToken->unitType());
SizesCalcParser.cpp 102 m_viewportDependant = m_viewportDependant || CSSPrimitiveValue::isViewportPercentageLength(it->unitType());

Completed in 190 milliseconds