Searched refs:adjustForAbsoluteZoom (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | ImageInputType.cpp | 203 return box ? adjustForAbsoluteZoom(box->contentHeight(), box) : 0; in height() 227 return box ? adjustForAbsoluteZoom(box->contentWidth(), box) : 0; in width()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | MediaValues.cpp | 38 return adjustForAbsoluteZoom(viewportWidth, frame->document()->renderView()); in calculateViewportWidth() 45 return adjustForAbsoluteZoom(viewportHeight, frame->document()->renderView()); in calculateViewportHeight()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorOverlay.cpp | 653 …elementInfo->setString("nodeWidth", String::number(modelObject ? adjustForAbsoluteZoom(modelObject… in buildElementInfo() 654 …elementInfo->setString("nodeHeight", String::number(modelObject ? adjustForAbsoluteZoom(modelObjec… in buildElementInfo() 820 ….setWidth(modelObject ? adjustForAbsoluteZoom(modelObject->pixelSnappedOffsetWidth(), modelObject)… in getBoxModel() 821 ….setHeight(modelObject ? adjustForAbsoluteZoom(modelObject->pixelSnappedOffsetHeight(), modelObjec… in getBoxModel()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLImageElement.cpp | 407 return box ? adjustForAbsoluteZoom(box->contentBoxRect().pixelSnappedWidth(), box) : 0; in width() 430 return box ? adjustForAbsoluteZoom(box->contentBoxRect().pixelSnappedHeight(), box) : 0; in height()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderObject.h | 1511 inline int adjustForAbsoluteZoom(int value, RenderObject* renderer) in adjustForAbsoluteZoom() function 1513 return adjustForAbsoluteZoom(value, renderer->style()); in adjustForAbsoluteZoom()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | LocalDOMWindow.cpp | 1113 …return adjustForAbsoluteZoom(view->visibleContentRect(IncludeScrollbars).height(), m_frame->pageZo… in innerHeight() 1131 …return adjustForAbsoluteZoom(view->visibleContentRect(IncludeScrollbars).width(), m_frame->pageZoo… in innerWidth()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | RenderStyle.h | 1823 inline int adjustForAbsoluteZoom(int value, float zoomFactor) in adjustForAbsoluteZoom() function 1839 inline int adjustForAbsoluteZoom(int value, const RenderStyle* style) in adjustForAbsoluteZoom() function 1841 return adjustForAbsoluteZoom(value, style->effectiveZoom()); in adjustForAbsoluteZoom()
|