HomeSort by relevance Sort by last modified time
    Searched refs:overflowX (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.cpp 258 ASSERT(object->style()->overflowX() == object->style()->overflowY());
261 ASSERT(object->style()->overflowX() != OSCROLL);
266 return object->style()->overflowX() == OHIDDEN;
  /external/webkit/Source/WebCore/rendering/
RenderBox.h 332 bool hasAutoHorizontalScrollbar() const { return hasOverflowClip() && (style()->overflowX() == OAUTO || style()->overflowX() == OOVERLAY); }
334 bool scrollsOverflowX() const { return hasOverflowClip() && (style()->overflowX() == OSCROLL || hasAutoHorizontalScrollbar()); }
RenderTextControl.cpp 472 if (style()->overflowX() == OSCROLL || (style()->overflowX() == OAUTO && m_innerText->renderer()->style()->wordWrap() == NormalWordWrap))
RenderLayer.cpp     [all...]
RenderBox.cpp 372 if (style()->overflowX() != OVISIBLE && !isRootObject && (isRenderBlock() || isTableRow() || isTableSection())) {
381 document()->documentElement()->renderer()->style()->overflowX() == OVISIBLE)
596 && (style()->overflowX() == OSCROLL || style()->overflowX() == OAUTO);
    [all...]
RenderFlexibleBox.cpp 247 if (style()->overflowX() == OSCROLL)
    [all...]
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebCore/page/
SpatialNavigation.cpp 463 return (container->renderer()->style()->overflowX() != OHIDDEN && container->renderBox()->scrollLeft() > 0);
467 return (container->renderer()->style()->overflowX() != OHIDDEN && container->renderBox()->scrollLeft() + container->renderBox()->clientWidth() < container->renderBox()->scrollWidth());
689 if (((direction == FocusDirectionLeft || direction == FocusDirectionRight) && parentNode->renderer()->style()->overflowX() == OHIDDEN)
FrameView.cpp 501 switch (o->style()->overflowX()) {
565 RenderObject* o = rootRenderer->style()->overflowX() == OVISIBLE && document->documentElement()->hasTagName(htmlTag) ? body->renderer() : rootRenderer;
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.cpp 374 setPropertyValue(CSSPropertyOverflowX, new ApplyPropertyDefault<EOverflow>(&RenderStyle::overflowX, &RenderStyle::setOverflowX, &RenderStyle::initialOverflowX));
CSSStyleSelector.cpp     [all...]
CSSComputedStyleDeclaration.cpp     [all...]
  /external/webkit/Source/WebCore/editing/
Editor.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 458 EOverflow overflowX() const { return static_cast<EOverflow>(noninherited_flags._overflowX); }
    [all...]

Completed in 489 milliseconds