Searched defs:clientHeight (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderMarquee.cpp141 int clientHeight = box->clientHeight(); local
144 return min(contentHeight - clientHeight, 0);
146 return -clientHeight;
150 return max(contentHeight - clientHeight, 0);
295 int clientSize = (isHorizontal() ? m_layer->renderBox()->clientWidth() : m_layer->renderBox()->clientHeight());
H A DRenderBox.cpp419 // More IE extensions. clientWidth and clientHeight represent the interior of an object
426 int RenderBox::clientHeight() const function in class:WebCore::RenderBox
448 return max(clientHeight(), maxYLayoutOverflow() - borderTop());
659 return canBeProgramaticallyScrolled(false) && (scrollHeight() != clientHeight() || scrollWidth() != clientWidth());
H A DRenderLayer.cpp1351 int maxY = scrollHeight() - box->clientHeight();
1462 IntRect layerBounds = IntRect(absPos.x() + scrollXOffset(), absPos.y() + scrollYOffset(), box->clientWidth(), box->clientHeight());
2152 *needVBar = m_scrollHeight > box->clientHeight();
2193 int newY = max(0, min(scrollYOffset(), scrollHeight() - box->clientHeight()));
2272 int clientHeight = box->clientHeight(); local
2273 int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight - Scrollbar::maxOverlapBetweenPages()), 1);
2275 m_vBar->setProportion(clientHeight, m_scrollHeight);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DSurface.cpp374 int clientHeight = client.bottom - client.top; local
375 bool sizeDirty = clientWidth != getWidth() || clientHeight != getHeight();
379 resetSwapChain(clientWidth, clientHeight);
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp1241 HRESULT STDMETHODCALLTYPE DOMElement::clientHeight( function in class:DOMElement
1247 *result = m_element->clientHeight();
/external/webkit/Source/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h185 @property(readonly) int clientHeight; variable
/external/webkit/Source/WebCore/dom/
H A DElement.cpp437 int Element::clientHeight() function in class:WebCore::Element
441 // When in strict mode, clientHeight for the document element should return the height of the containing frame.
442 // When in quirks mode, clientHeight for the body element should return the height of the containing frame.
454 return adjustForAbsoluteZoom(rend->clientHeight(), rend);
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp592 int clientHeight = visibleHeight(); local
593 m_verticalScrollbar->setEnabled(contentsHeight() > clientHeight);
594 int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight - Scrollbar::maxOverlapBetweenPages()), 1);
607 m_verticalScrollbar->setProportion(clientHeight, contentsHeight());

Completed in 248 milliseconds