zoom 86 Source/core/animation/AnimatableLength.cpp return Length(clampedNumber(range) * conversionData.zoom(), Fixed); zoom 510 Source/core/animation/css/CSSAnimatableValueFactory.cpp return createFromDouble(style.zoom()); zoom 305 Source/core/animation/css/CSSPropertyEquality.cpp return a.zoom() == b.zoom(); zoom 681 Source/core/css/CSSCalculationValue.cpp PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> CSSCalcValue::createExpressionNode(const CalcExpressionNode* node, float zoom) zoom 689 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(toCalcExpressionLength(node)->length(), zoom); zoom 692 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(createExpressionNode(binaryNode->leftSide(), zoom), createExpressionNode(binaryNode->rightSide(), zoom), binaryNode->getOperator()); zoom 701 Source/core/css/CSSCalculationValue.cpp createExpressionNode(blendNode->from(), zoom), zoom 705 Source/core/css/CSSCalculationValue.cpp createExpressionNode(blendNode->to(), zoom), zoom 718 Source/core/css/CSSCalculationValue.cpp PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> CSSCalcValue::createExpressionNode(const Length& length, float zoom) zoom 723 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(CSSPrimitiveValue::create(length, zoom), length.value() == trunc(length.value())); zoom 725 Source/core/css/CSSCalculationValue.cpp return createExpressionNode(length.calculationValue()->expression(), zoom); zoom 96 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcValue> create(const CalculationValue* value, float zoom) { return adoptRefWillBeRefCountedGarbageCollected(new CSSCalcValue(value, zoom)); } zoom 100 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> createExpressionNode(const CalcExpressionNode*, float zoom); zoom 101 Source/core/css/CSSCalculationValue.h static PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> createExpressionNode(const Length&, float zoom); zoom 127 Source/core/css/CSSCalculationValue.h CSSCalcValue(const CalculationValue* value, float zoom) zoom 129 Source/core/css/CSSCalculationValue.h , m_expression(createExpressionNode(value->expression(), zoom)) zoom 2341 Source/core/css/CSSComputedStyleDeclaration.cpp return cssValuePool().createValue(style->zoom(), CSSPrimitiveValue::CSS_NUMBER); zoom 395 Source/core/css/CSSGradientValue.cpp return value->getFloatValue() * conversionData.zoom(); zoom 907 Source/core/css/CSSGradientValue.cpp result = radius->getFloatValue() * conversionData.zoom(); zoom 309 Source/core/css/CSSPrimitiveValue.cpp CSSPrimitiveValue::CSSPrimitiveValue(const Length& length, float zoom) zoom 326 Source/core/css/CSSPrimitiveValue.cpp m_value.num = length.value() / zoom; zoom 329 Source/core/css/CSSPrimitiveValue.cpp init(CSSCalcValue::create(length.calculationValue(), zoom)); zoom 675 Source/core/css/CSSPrimitiveValue.cpp return result * conversionData.zoom(); zoom 230 Source/core/css/CSSPrimitiveValue.h static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create(const Length& value, float zoom) zoom 232 Source/core/css/CSSPrimitiveValue.h return adoptRefWillBeRefCountedGarbageCollected(new CSSPrimitiveValue(value, zoom)); zoom 361 Source/core/css/CSSPrimitiveValue.h CSSPrimitiveValue(const Length&, float zoom); zoom 39 Source/core/css/CSSToLengthConversionData.cpp CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize) zoom 44 Source/core/css/CSSToLengthConversionData.cpp , m_zoom(zoom) zoom 48 Source/core/css/CSSToLengthConversionData.cpp ASSERT(zoom > 0); zoom 61 Source/core/css/CSSToLengthConversionData.cpp CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize) zoom 66 Source/core/css/CSSToLengthConversionData.cpp , m_zoom(zoom) zoom 70 Source/core/css/CSSToLengthConversionData.cpp ASSERT(zoom > 0); zoom 44 Source/core/css/CSSToLengthConversionData.h CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, float zoom, bool computingFontSize = false); zoom 46 Source/core/css/CSSToLengthConversionData.h CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize = false); zoom 50 Source/core/css/CSSToLengthConversionData.h float zoom() const; zoom 56 Source/core/css/CSSValuePool.h PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, float zoom) { return CSSPrimitiveValue::create(value, zoom); } zoom 627 Source/core/css/resolver/CSSToStyleMap.cpp float zoom = useSVGZoomRules() ? 1.0f : cssToLengthConversionData().zoom(); zoom 631 Source/core/css/resolver/CSSToStyleMap.cpp const CSSToLengthConversionData& conversionData = cssToLengthConversionData().copyWithAdjustedZoom(zoom); zoom 90 Source/core/css/resolver/FilterOperationResolver.cpp float zoomFactor = unadjustedConversionData.zoom() * state.elementStyleResources().deviceScaleFactor(); zoom 92 Source/core/css/resolver/FilterOperationResolver.cpp float zoomFactor = unadjustedConversionData.zoom(); zoom 157 Source/core/css/resolver/MatchedPropertiesCache.cpp if (style->zoom() != RenderStyle::initialZoom()) zoom 737 Source/core/css/resolver/StyleBuilderCustom.cpp state.setZoom(state.parentStyle()->zoom()); zoom 752 Source/core/css/resolver/StyleBuilderCustom.cpp float docZoom = state.rootElementStyle() ? state.rootElementStyle()->zoom() : RenderStyle::initialZoom(); zoom 89 Source/core/css/resolver/TransformBuilder.cpp float zoomFactor = conversionData.zoom(); zoom 98 Source/core/css/resolver/ViewportStyleResolver.cpp description.zoom = viewportArgumentValue(CSSPropertyZoom); zoom 517 Source/core/dom/Element.cpp zoomFactor = prev->style()->zoom(); zoom 523 Source/core/dom/Element.cpp zoomFactor = prev->style()->zoom(); zoom 84 Source/core/dom/ViewportDescription.cpp if (zoom == ViewportDescription::ValueAuto) { zoom 100 Source/core/dom/ViewportDescription.cpp float resultZoom = zoom; zoom 185 Source/core/dom/ViewportDescription.cpp if (zoom == ViewportDescription::ValueAuto) zoom 63 Source/core/dom/ViewportDescription.h , zoom(ValueAuto) zoom 79 Source/core/dom/ViewportDescription.h float zoom; zoom 94 Source/core/dom/ViewportDescription.h && zoom == other.zoom zoom 929 Source/core/frame/FrameView.cpp m_lastZoomFactor = rootForThisLayout->style()->zoom(); zoom 2150 Source/core/frame/FrameView.cpp float currentZoomFactor = renderView->style()->zoom(); zoom 316 Source/core/html/HTMLMetaElement-in.cpp description->zoom = parseViewportValueAsZoom(keyString, valueString); zoom 137 Source/core/inspector/InspectorFrontendHost.cpp void InspectorFrontendHost::setZoomFactor(float zoom) zoom 139 Source/core/inspector/InspectorFrontendHost.cpp m_frontendPage->mainFrame()->setPageAndTextZoomFactors(zoom, 1); zoom 325 Source/core/rendering/FilterEffectRenderer.cpp float zoom = style ? style->effectiveZoom() : 1.0f; zoom 332 Source/core/rendering/FilterEffectRenderer.cpp absoluteTransform.scale(zoom, zoom); zoom 3969 Source/core/rendering/RenderLayer.cpp float zoom = style->effectiveZoom() * WebCore::deviceScaleFactor(renderer()->frame()); zoom 3971 Source/core/rendering/RenderLayer.cpp float zoom = style->effectiveZoom(); zoom 3973 Source/core/rendering/RenderLayer.cpp referenceFilter->setAbsoluteTransform(AffineTransform().scale(zoom, zoom)); zoom 1425 Source/core/rendering/RenderObject.h float zoom = renderer.style()->effectiveZoom(); zoom 1426 Source/core/rendering/RenderObject.h if (zoom != 1) zoom 1427 Source/core/rendering/RenderObject.h quad.scale(1 / zoom, 1 / zoom); zoom 1432 Source/core/rendering/RenderObject.h float zoom = renderer.style()->effectiveZoom(); zoom 1433 Source/core/rendering/RenderObject.h if (zoom != 1) zoom 1434 Source/core/rendering/RenderObject.h rect.scale(1 / zoom, 1 / zoom); zoom 240 Source/core/rendering/style/RenderStyle.cpp ASSERT(zoom() == initialZoom()); zoom 589 Source/core/rendering/style/RenderStyle.h float zoom() const { return visual->m_zoom; } zoom 1809 Source/core/rendering/style/RenderStyle.h setEffectiveZoom(effectiveZoom() * zoom()); zoom 55 Source/core/svg/SVGDocument.cpp event->initEvent(EventTypeNames::zoom, true, false); zoom 142 Source/core/svg/SVGGraphicsElement.cpp float zoom = style->effectiveZoom(); zoom 143 Source/core/svg/SVGGraphicsElement.cpp if (zoom != 1) { zoom 144 Source/core/svg/SVGGraphicsElement.cpp matrix.setE(matrix.e() / zoom); zoom 145 Source/core/svg/SVGGraphicsElement.cpp matrix.setF(matrix.f() / zoom); zoom 256 Source/core/svg/SVGSVGElement.cpp document().setWindowAttributeEventListener(EventTypeNames::zoom, createAttributeEventListener(document().frame(), name, value)); zoom 176 Source/core/svg/graphics/SVGImage.cpp void SVGImage::drawForContainer(GraphicsContext* context, const FloatSize containerSize, float zoom, const FloatRect& dstRect, zoom 189 Source/core/svg/graphics/SVGImage.cpp scaledSrc.scale(1 / zoom); zoom 214 Source/core/svg/graphics/SVGImage.cpp void SVGImage::drawPatternForContainer(GraphicsContext* context, const FloatSize containerSize, float zoom, const FloatRect& srcRect, zoom 218 Source/core/svg/graphics/SVGImage.cpp zoomedContainerRect.scale(zoom); zoom 236 Source/core/svg/graphics/SVGImage.cpp drawForContainer(buffer->context(), containerSize, zoom, imageBufferSize, zoomedContainerRect, CompositeSourceOver, blink::WebBlendModeNormal); zoom 38 Source/core/svg/graphics/SVGImageForContainer.h static PassRefPtr<SVGImageForContainer> create(SVGImage* image, const FloatSize& containerSize, float zoom) zoom 40 Source/core/svg/graphics/SVGImageForContainer.h return adoptRef(new SVGImageForContainer(image, containerSize, zoom)); zoom 65 Source/core/svg/graphics/SVGImageForContainer.h SVGImageForContainer(SVGImage* image, const FloatSize& containerSize, float zoom) zoom 68 Source/core/svg/graphics/SVGImageForContainer.h , m_zoom(zoom) zoom 146 Source/web/PageScaleConstraintsSet.cpp if (description.zoom == -1) { zoom 175 Source/web/PageScaleConstraintsSet.cpp if (useWideViewport && (description.maxWidth.isAuto() || description.maxWidth.type() == ExtendToZoom) && description.zoom != 1.0f) { zoom 179 Source/web/PageScaleConstraintsSet.cpp const float nonWideScale = description.zoom < 1 && description.maxWidth.type() != DeviceWidth && description.maxWidth.type() != DeviceHeight ? -1 : oldInitialScale; zoom 182 Source/web/PageScaleConstraintsSet.cpp if (m_userAgentConstraints.initialScale != -1 && (description.maxWidth.type() == DeviceWidth || ((description.maxWidth.isAuto() || description.maxWidth.type() == ExtendToZoom) && description.zoom == -1))) { zoom 187 Source/web/PageScaleConstraintsSet.cpp if (description.zoom < 1) { zoom 1054 Source/web/tests/WebFrameTest.cpp description.zoom = 2;