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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.h 44 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, float zoom, bool computingFontSize = false);
45 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, bool computingFontSize = false);
46 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize = false);
51 bool computingFontSize() const { return m_computingFontSize; }
CSSPrimitiveValue.cpp 609 bool computingFontSize = conversionData.computingFontSize();
615 factor = computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().computedSize();
624 factor = (computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().computedSize()) / 2.0;
628 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
678 if (computingFontSize || isFontRelativeLength())
    [all...]

Completed in 63 milliseconds