HomeSort by relevance Sort by last modified time
    Searched refs:clientHeight (Results 1 - 25 of 43) sorted by null

1 2

  /external/webkit/Source/WebCore/rendering/
RenderMarquee.cpp 141 int clientHeight = box->clientHeight();
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());
RenderBox.h 138 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
RenderLayer.cpp     [all...]
RenderListBox.cpp 639 return max(clientHeight(), listHeight());
RenderTreeAsText.cpp 622 if (l.renderBox() && l.renderBox()->clientHeight() != l.scrollHeight())
RenderBox.cpp 419 // More IE extensions. clientWidth and clientHeight represent the interior of an object
426 int RenderBox::clientHeight() const
448 return max(clientHeight(), maxYLayoutOverflow() - borderTop());
659 return canBeProgramaticallyScrolled(false) && (scrollHeight() != clientHeight() || scrollWidth() != clientWidth());
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
Surface.cpp 374 int clientHeight = client.bottom - client.top;
375 bool sizeDirty = clientWidth != getWidth() || clientHeight != getHeight();
379 resetSwapChain(clientWidth, clientHeight);
  /external/webkit/Source/WebCore/inspector/front-end/
Toolbar.js 131 if (this.element.scrollHeight > this.element.clientHeight)
180 var top = this._arrow.totalOffsetTop + this._arrow.clientHeight;
TextViewer.js 206 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");
    [all...]
TimelinePanel.js 552 var visibleBottom = visibleTop + this._containerElement.clientHeight;
618 this.sidebarResizeElement.style.height = this.sidebarElement.clientHeight + "px";
    [all...]
utilities.js 199 return this.scrollTop + this.clientHeight === this.scrollHeight;
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 623 int clientHeight = visibleHeight();
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());
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.idl 79 readonly attribute long clientHeight;
Element.h 161 int clientHeight();
Element.cpp 437 int Element::clientHeight()
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);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutCanvas.java 378 int clientHeight = clientArea.height;
401 if (clientHeight == 0) {
402 clientHeight = imageHeight;
413 mVScale.setSize(imageHeight, fullHeight, clientHeight);
    [all...]
  /external/webkit/Source/WebCore/page/
SpatialNavigation.cpp 395 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/
print_preview_animations.js 152 insideEl.scrollbarHeight = insideEl.offsetHeight - insideEl.clientHeight;
  /external/webkit/Source/WebKit/win/
DOMCoreClasses.cpp 1241 HRESULT STDMETHODCALLTYPE DOMElement::clientHeight(
1247 *result = m_element->clientHeight();
    [all...]
DOMCoreClasses.h 805 virtual HRESULT STDMETHODCALLTYPE clientHeight(
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCore.idl 647 - (int)clientHeight;
649 HRESULT clientHeight([out, retval] int* result);
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 680 renderLayer->scrollHeight() - box->clientHeight());
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 727 this.grid_.parentNode.clientHeight + 'px';
732 this.table_.list_.style.height = (this.table_.clientHeight - 1 -
733 this.table_.header_.clientHeight) + 'px';
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]

Completed in 1935 milliseconds

1 2