Home
last modified time | relevance | path

Searched refs:clientHeight (Results 1 – 25 of 54) sorted by relevance

123

/external/chromium/chrome/browser/resources/shared/js/cr/ui/
Dlist.js33 y < rect.top + el.clientTop + el.clientHeight;
644 var clientHeight = this.clientHeight;
649 if (top + itemHeight > scrollTop + clientHeight - paddingY) {
650 this.scrollTop = top + itemHeight - clientHeight + paddingY;
807 var clientHeight = this.clientHeight;
811 Math.ceil(clientHeight / itemHeight) + 1,
812 this.countItemsInRange_(firstIndex, scrollTop + clientHeight)));
859 var clientHeight = this.clientHeight;
Dgrid.js163 var clientHeight = this.clientHeight;
165 columns * (Math.ceil(clientHeight / itemHeight) + 1),
166 this.countItemsInRange_(firstIndex, scrollTop + clientHeight));
Dposition_util.js69 height: docElement.clientHeight,
72 bottom: docElement.clientHeight,
/external/webkit/Source/WebCore/rendering/
DRenderMarquee.cpp141 int clientHeight = box->clientHeight(); in computePosition() local
144 return min(contentHeight - clientHeight, 0); in computePosition()
146 return -clientHeight; in computePosition()
150 return max(contentHeight - clientHeight, 0); in computePosition()
295 …ze = (isHorizontal() ? m_layer->renderBox()->clientWidth() : m_layer->renderBox()->clientHeight()); in timerFired()
DRenderBox.h138 …ow() const { return m_overflow ? m_overflow->maxYLayoutOverflow() : borderTop() + clientHeight(); } in maxYLayoutOverflow()
166 int contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); } in contentHeight()
180 int clientHeight() const;
181 …ogicalWidth() const { return style()->isHorizontalWritingMode() ? clientWidth() : clientHeight(); } in clientLogicalWidth()
182 …int clientLogicalHeight() const { return style()->isHorizontalWritingMode() ? clientHeight() : cli… in clientLogicalHeight()
184 …clientBoxRect() const { return IntRect(clientLeft(), clientTop(), clientWidth(), clientHeight()); } in clientBoxRect()
DRenderLayer.cpp1352 int maxY = scrollHeight() - box->clientHeight(); in scrollTo()
1484 …sPos.x() + scrollXOffset(), absPos.y() + scrollYOffset(), box->clientWidth(), box->clientHeight()); in scrollTo()
2174 *needVBar = m_scrollHeight > box->clientHeight(); in scrollTo()
2215 int newY = max(0, min(scrollYOffset(), scrollHeight() - box->clientHeight())); in scrollTo()
2294 int clientHeight = box->clientHeight(); in scrollTo() local
2295 …int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight in scrollTo()
2297 m_vBar->setProportion(clientHeight, m_scrollHeight); in scrollTo()
/external/chromium-trace/src/shared/js/cr/ui/
Dlist.js33 y < rect.top + el.clientTop + el.clientHeight;
716 var clientHeight = this.clientHeight;
730 if (top + itemHeight > scrollTop + clientHeight - paddingY) {
731 self.scrollTop = top + itemHeight - clientHeight + paddingY;
738 if (itemHeight <= clientHeight) {
741 if (scrollTop + clientHeight < top + itemHeight)
746 if (top + itemHeight < scrollTop + clientHeight)
905 getItemsInViewPort: function(scrollTop, clientHeight) { argument
913 var lastIndex = this.getIndexForListOffset_(scrollTop + clientHeight);
1075 var clientHeight = this.clientHeight;
[all …]
Dgrid.js145 this.clientHeight_ = this.clientHeight;
158 this.clientHeight_ = this.clientHeight;
228 getItemsInViewPort: function(scrollTop, clientHeight) { argument
234 columns * (Math.ceil(clientHeight / itemHeight) + 1),
235 this.countItemsInRange_(firstIndex, scrollTop + clientHeight));
Dposition_util.js68 height: docElement.clientHeight,
71 bottom: docElement.clientHeight,
Dbubble.js181 clientRect.top - this.clientHeight - ARROW_OFFSET_Y;
/external/webkit/Source/WebCore/inspector/front-end/
DToolbar.js131 if (this.element.scrollHeight > this.element.clientHeight)
180 var top = this._arrow.totalOffsetTop + this._arrow.clientHeight;
DTextViewer.js206 this._gutterPanel.syncClientHeight(mainElement.clientHeight);
573 var visibleTo = this.element.scrollTop + this.element.clientHeight;
599 if (offsetParent && offsetParent.scrollHeight > offsetParent.clientHeight)
688 syncClientHeight: function(clientHeight) argument
690 if (this.element.offsetHeight > clientHeight)
691 …._container.style.setProperty("padding-bottom", (this.element.offsetHeight - clientHeight) + "px");
1689 var visibleTo = this.element.scrollTop + this.element.clientHeight;
DTimelinePanel.js552 var visibleBottom = visibleTop + this._containerElement.clientHeight;
618 this.sidebarResizeElement.style.height = this.sidebarElement.clientHeight + "px";
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
DSurface.cpp374 int clientHeight = client.bottom - client.top; in checkForOutOfDateSwapChain() local
375 bool sizeDirty = clientWidth != getWidth() || clientHeight != getHeight(); in checkForOutOfDateSwapChain()
379 resetSwapChain(clientWidth, clientHeight); in checkForOutOfDateSwapChain()
/external/chromium/chrome/browser/resources/gpu_internals/
Dtimeline.js146 this.lastSize_ = this.clientWidth + 'x' + this.clientHeight;
148 var curSize = this.clientWidth + 'x' + this.clientHeight;
Dtimeline_track.js211 this.canvas_.height = this.canvasContainer_.clientHeight;
/external/webkit/Source/WebCore/platform/
DScrollView.cpp623 int clientHeight = visibleHeight(); in updateScrollbars() local
624 m_verticalScrollbar->setEnabled(contentsHeight() > clientHeight); in updateScrollbars()
625 …int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight in updateScrollbars()
638 m_verticalScrollbar->setProportion(clientHeight, contentsHeight()); in updateScrollbars()
/external/webkit/Source/WebCore/page/
DSpatialNavigation.cpp395 …->scrollHeight() - (container->renderBox()->scrollTop() + container->renderBox()->clientHeight())); in scrollInDirection()
396 …->scrollHeight() - (container->renderBox()->scrollTop() + container->renderBox()->clientHeight())); in scrollInDirection()
469 …DDEN && container->renderBox()->scrollTop() + container->renderBox()->clientHeight() < container->… in canScrollInDirection()
/external/chromium/chrome/browser/resources/
Dprint_preview_animations.js152 insideEl.scrollbarHeight = insideEl.offsetHeight - insideEl.clientHeight;
/external/chromium/chrome/browser/resources/file_manager/js/
Dfile_manager.js727 this.grid_.parentNode.clientHeight + 'px';
732 this.table_.list_.style.height = (this.table_.clientHeight - 1 -
733 this.table_.header_.clientHeight) + 'px';
/external/webkit/Source/WebCore/dom/
DElement.idl79 readonly attribute long clientHeight;
DElement.h161 int clientHeight();
/external/webkit/Source/WebKit/win/Interfaces/
DDOMCore.idl647 - (int)clientHeight;
649 HRESULT clientHeight([out, retval] int* result);
/external/webkit/Source/WebKit/win/
DDOMCoreClasses.cpp1241 HRESULT STDMETHODCALLTYPE DOMElement::clientHeight( in clientHeight() function in DOMElement
1247 *result = m_element->clientHeight(); in clientHeight()
/external/chromium/chrome/browser/resources/ntp/
Dmost_visited.js483 y = Math.min(y, document.body.clientHeight - rect.top -

123