Home
last modified time | relevance | path

Searched refs:adjustForAbsoluteZoom (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DImageInputType.cpp203 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/
DMediaValues.cpp38 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/
DInspectorOverlay.cpp653 …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/
DHTMLImageElement.cpp407 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/
DRenderObject.h1511 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/
DLocalDOMWindow.cpp1113 …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/
DRenderStyle.h1823 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()