Home
last modified time | relevance | path

Searched refs:OAUTO (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleAdjuster.cpp369 style->setOverflowX(style->overflowX() == OVISIBLE ? OAUTO : style->overflowX()); in adjustStyleForTagName()
370 style->setOverflowY(style->overflowY() == OVISIBLE ? OAUTO : style->overflowY()); in adjustStyleForTagName()
399 style->setOverflowX(OAUTO); in adjustOverflow()
401 style->setOverflowY(OAUTO); in adjustOverflow()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTextControl.cpp137 …ngMode() && (style()->overflowX() == OSCROLL || (style()->overflowX() == OAUTO && innerEditor->re… in computeLogicalHeight()
138 …ngMode() && (style()->overflowY() == OSCROLL || (style()->overflowY() == OAUTO && innerEditor->re… in computeLogicalHeight()
DRenderLayerScrollableArea.cpp500 return (overflowStyle == OSCROLL || overflowStyle == OAUTO || overflowStyle == OOVERLAY); in userInputScrollable()
622 if (box().style()->overflowX() == OAUTO || box().style()->overflowY() == OAUTO) { in updateAfterLayout()
695 return overflow == OAUTO || overflow == OOVERLAY; in overflowDefinesAutomaticScrollbar()
DRenderBox.h483 …lScrollbar() const { return hasOverflowClip() && (style()->overflowY() == OAUTO || style()->overfl… in hasAutoVerticalScrollbar()
484 …lScrollbar() const { return hasOverflowClip() && (style()->overflowX() == OAUTO || style()->overfl… in hasAutoHorizontalScrollbar()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGRoot.cpp213 || style()->overflowX() == OAUTO in shouldApplyViewportClip()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyleConstants.h110 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY enumerator
/external/chromium_org/third_party/WebKit/Source/core/dom/
DDocument.cpp1716 EOverflow overflowX = OAUTO; in inheritHtmlAndBodyElementStyles()
1717 EOverflow overflowY = OAUTO; in inheritHtmlAndBodyElementStyles()
1724 overflowX = OAUTO; in inheritHtmlAndBodyElementStyles()
1726 overflowY = OAUTO; in inheritHtmlAndBodyElementStyles()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp500 case OAUTO: in applyOverflowToViewportAndSetRenderer()
516 case OAUTO: in applyOverflowToViewportAndSetRenderer()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSPrimitiveValueMappings.h2017 case OAUTO: in CSSPrimitiveValue()
2043 return OAUTO; in EOverflow()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditorCommand.cpp278 …if (!(style->overflowY() == OSCROLL || style->overflowY() == OAUTO || focusedElement->hasEditableS… in verticalScrollDistance()