Searched refs:clientHeight (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dgrid.js163 var clientHeight = this.clientHeight;
165 columns * (Math.ceil(clientHeight / itemHeight) + 1),
166 this.countItemsInRange_(firstIndex, scrollTop + clientHeight));
H A 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
[all...]
H A Dposition_util.js69 height: docElement.clientHeight,
72 bottom: docElement.clientHeight,
/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.h138 int maxYLayoutOverflow() const { return m_overflow ? m_overflow->maxYLayoutOverflow() : borderTop() + clientHeight(); }
166 int contentHeight() const { return clientHeight() - paddingTop() - paddingBottom(); }
175 // More IE extensions. clientWidth and clientHeight represent the interior of an object
180 int clientHeight() const;
181 int clientLogicalWidth() const { return style()->isHorizontalWritingMode() ? clientWidth() : clientHeight(); }
182 int clientLogicalHeight() const { return style()->isHorizontalWritingMode() ? clientHeight() : clientWidth(); }
184 IntRect clientBoxRect() const { return IntRect(clientLeft(), clientTop(), clientWidth(), clientHeight()); }
186 // scrollWidth/scrollHeight will be the same as clientWidth/clientHeight unless the
H A DRenderLayer.cpp1352 int maxY = scrollHeight() - box->clientHeight();
1484 IntRect layerBounds = IntRect(absPos.x() + scrollXOffset(), absPos.y() + scrollYOffset(), box->clientWidth(), box->clientHeight());
2174 *needVBar = m_scrollHeight > box->clientHeight();
2215 int newY = max(0, min(scrollYOffset(), scrollHeight() - box->clientHeight()));
2294 int clientHeight = box->clientHeight(); local
2295 int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight - Scrollbar::maxOverlapBetweenPages()), 1);
2297 m_vBar->setProportion(clientHeight, m_scrollHeight);
/external/webkit/Source/WebCore/inspector/front-end/
H A DToolbar.js131 if (this.element.scrollHeight > this.element.clientHeight)
180 var top = this._arrow.totalOffsetTop + this._arrow.clientHeight;
H A 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)
690 if (this.element.offsetHeight > clientHeight)
691 this._container.style.setProperty("padding-bottom", (this.element.offsetHeight - clientHeight) + "px");
1689 var visibleTo = this.element.scrollTop + this.element.clientHeight;
H A DTimelinePanel.js552 var visibleBottom = visibleTop + this._containerElement.clientHeight;
618 this.sidebarResizeElement.style.height = this.sidebarElement.clientHeight + "px";
/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/chromium/chrome/browser/resources/gpu_internals/
H A Dtimeline.js146 this.lastSize_ = this.clientWidth + 'x' + this.clientHeight;
148 var curSize = this.clientWidth + 'x' + this.clientHeight;
H A Dtimeline_track.js211 this.canvas_.height = this.canvasContainer_.clientHeight;
/external/chromium/chrome/browser/resources/
H A Dprint_preview_animations.js152 insideEl.scrollbarHeight = insideEl.offsetHeight - insideEl.clientHeight;
H A Dnew_new_tab.js418 return window.innerHeight != document.body.clientHeight;
/external/webkit/Source/WebCore/platform/
H A DScrollView.cpp623 int clientHeight = visibleHeight(); local
624 m_verticalScrollbar->setEnabled(contentsHeight() > clientHeight);
625 int pageStep = max(max<int>(clientHeight * Scrollbar::minFractionToStepWhenPaging(), clientHeight - Scrollbar::maxOverlapBetweenPages()), 1);
638 m_verticalScrollbar->setProportion(clientHeight, contentsHeight());
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_viewport.js121 var curSize = this.clientWidth + 'x' + this.clientHeight;
/external/webkit/Source/WebCore/dom/
H A DElement.idl79 readonly attribute long clientHeight;
H A DElement.h161 int clientHeight();
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/page/
H A DSpatialNavigation.cpp395 ASSERT(container->renderBox()->scrollHeight() - (container->renderBox()->scrollTop() + container->renderBox()->clientHeight()));
396 dy = min(Scrollbar::pixelsPerLineStep(), container->renderBox()->scrollHeight() - (container->renderBox()->scrollTop() + container->renderBox()->clientHeight()));
469 return (container->renderer()->style()->overflowY() != OHIDDEN && container->renderBox()->scrollTop() + container->renderBox()->clientHeight() < container->renderBox()->scrollHeight());
/external/chromium/chrome/browser/resources/ntp/
H A Dmost_visited.js483 y = Math.min(y, document.body.clientHeight - rect.top -
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.cpp1241 HRESULT STDMETHODCALLTYPE DOMElement::clientHeight( function in class:DOMElement
1247 *result = m_element->clientHeight();
/external/chromium/chrome/browser/resources/file_manager/js/
H A 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/chromium/chrome/browser/resources/options/
H A Doptions_page.js665 var viewportHeight = document.documentElement.clientHeight;
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMCore.idl647 - (int)clientHeight;
649 HRESULT clientHeight([out, retval] int* result);

Completed in 366 milliseconds

12