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

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp369 style->setOverflowX(style->overflowX() == OVISIBLE ? OAUTO : style->overflowX());
370 style->setOverflowY(style->overflowY() == OVISIBLE ? OAUTO : style->overflowY());
399 style->setOverflowX(OAUTO);
401 style->setOverflowY(OAUTO);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTextControl.cpp137 if ((isHorizontalWritingMode() && (style()->overflowX() == OSCROLL || (style()->overflowX() == OAUTO && innerEditor->renderer()->style()->overflowWrap() == NormalOverflowWrap)))
138 || (!isHorizontalWritingMode() && (style()->overflowY() == OSCROLL || (style()->overflowY() == OAUTO && innerEditor->renderer()->style()->overflowWrap() == NormalOverflowWrap))))
H A DRenderLayerScrollableArea.cpp500 return (overflowStyle == OSCROLL || overflowStyle == OAUTO || overflowStyle == OOVERLAY);
622 if (box().style()->overflowX() == OAUTO || box().style()->overflowY() == OAUTO) {
695 return overflow == OAUTO || overflow == OOVERLAY;
H A DRenderBox.h483 bool hasAutoVerticalScrollbar() const { return hasOverflowClip() && (style()->overflowY() == OAUTO || style()->overflowY() == OOVERLAY); }
484 bool hasAutoHorizontalScrollbar() const { return hasOverflowClip() && (style()->overflowX() == OAUTO || style()->overflowX() == OOVERLAY); }
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGRoot.cpp213 || style()->overflowX() == OAUTO
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyleConstants.h110 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY enumerator in enum:blink::EOverflow
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp500 case OAUTO:
516 case OAUTO:
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocument.cpp1716 EOverflow overflowX = OAUTO;
1717 EOverflow overflowY = OAUTO;
1724 overflowX = OAUTO;
1726 overflowY = OAUTO;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValueMappings.h2017 case OAUTO:
2043 return OAUTO;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorCommand.cpp278 if (!(style->overflowY() == OSCROLL || style->overflowY() == OAUTO || focusedElement->hasEditableStyle()))

Completed in 273 milliseconds