Searched refs:zoomedSize (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DThemeMac.mm124 static LengthSize sizeFromNSControlSize(NSControlSize nsControlSize, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
129 LengthSize result = zoomedSize;
130 if (zoomedSize.width().isIntrinsicOrAuto() && controlSize.width() > 0)
132 if (zoomedSize.height().isIntrinsicOrAuto() && controlSize.height() > 0)
137 static LengthSize sizeFromFont(const Font& font, const LengthSize& zoomedSize, float zoomFactor, const IntSize* sizes)
139 return sizeFromNSControlSize(controlSizeForFont(font), zoomedSize, zoomFactor, sizes);
212 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
216 int widthDelta = zoomedRect.width() - (zoomedSize.width() + margins[leftMargin] * zoomFactor + margins[rightMargin] * zoomFactor);
217 int heightDelta = zoomedRect.height() - (zoomedSize.height() + margins[topMargin] * zoomFactor + margins[bottomMargin] * zoomFactor);
249 static LengthSize checkboxSize(const Font& font, const LengthSize& zoomedSize, floa
[all...]
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderHTMLCanvas.cpp78 LayoutSize zoomedSize(canvasSize.width() * style()->effectiveZoom(), canvasSize.height() * style()->effectiveZoom());
80 if (zoomedSize == intrinsicSize())
83 setIntrinsicSize(zoomedSize);
/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DTheme.h87 virtual LengthSize controlSize(ControlPart, const Font&, const LengthSize& zoomedSize, float /*zoomFactor*/) const { return zoomedSize; } argument
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DStyleResolver.cpp3287 float zoomedSize = specifiedSize * zoomFactor;
3290 if (zoomedSize < minSize)
3291 zoomedSize = minSize;
3297 if (useSmartMinimumForFontSize && zoomedSize < minLogicalSize && (specifiedSize >= minLogicalSize || !isAbsoluteSize))
3298 zoomedSize = minLogicalSize;
3302 return min(maximumAllowedFontSize, zoomedSize);

Completed in 127 milliseconds