Home | History | Annotate | Download | only in rendering

Lines Matching refs:zoomLevel

76     float zoomLevel = o->style()->effectiveZoom();
78 if (zoomLevel != 1.0f) {
79 unzoomedRect.setWidth(unzoomedRect.width() / zoomLevel);
80 unzoomedRect.setHeight(unzoomedRect.height() / zoomLevel);
82 paintInfo.context->scale(FloatSize(zoomLevel, zoomLevel));
101 float zoomLevel = o->style()->effectiveZoom();
102 o->style()->setWidth(Length(static_cast<int>(size.width * zoomLevel), Fixed));
103 o->style()->setHeight(Length(static_cast<int>(size.height * zoomLevel), Fixed));
188 float zoomLevel = muteButtonBox->style()->effectiveZoom();
189 int y = yOffset * zoomLevel + muteButtonBox->offsetHeight() - size.height();
193 return IntPoint(xOffset * zoomLevel, y);