Searched defs:effectiveZoom (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutEngineSpacing.cpp36 SVGTextLayoutEngineSpacing::SVGTextLayoutEngineSpacing(const Font& font, float effectiveZoom) argument
39 , m_effectiveZoom(effectiveZoom)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DFontBuilder.cpp93 void FontBuilder::setInitial(float effectiveZoom) argument
118 void FontBuilder::fromSystemFont(CSSValueID valueId, float effectiveZoom) argument
136 fontDescription.setComputedSize(getComputedSizeFromSpecifiedSize(fontDescription, effectiveZoom, fontDescription.specifiedSize()));
334 float FontBuilder::getComputedSizeFromSpecifiedSize(FontDescription& fontDescription, float effectiveZoom, float specifiedSize) argument
336 float zoomFactor = effectiveZoom;
443 float computedSize = getComputedSizeFromSpecifiedSize(fontDescription, style->effectiveZoom(), fontDescription.specifiedSize());
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObject.cpp866 return borderImage && borderImage->canRender(*this, style()->effectiveZoom()) && borderImage->isLoaded();
877 if (!img || !img->canRender(*this, style()->effectiveZoom()))
914 if (!img || !img->canRender(*this, style()->effectiveZoom()))
2937 float effectiveZoom = style()->effectiveZoom(); local
2957 if (effectiveZoom != ancestor->style()->effectiveZoom())
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h578 float effectiveZoom() const { return rareInheritedData->m_effectiveZoom; } function in class:blink::RenderStyle
1841 return adjustForAbsoluteZoom(value, style->effectiveZoom());
1846 return value / style.effectiveZoom();
1851 return value / style.effectiveZoom();
1856 return value / style.effectiveZoom();
1872 return adjustScrollForAbsoluteZoom(scrollOffset, style.effectiveZoom());
1880 setEffectiveZoom(effectiveZoom() * zoom());

Completed in 111 milliseconds