Home
last modified time | relevance | path

Searched refs:OVISIBLE (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleAdjuster.cpp287 style->setOverflowX(style->overflowX() == OVISIBLE ? OAUTO : style->overflowX()); in adjustRenderStyle()
288 style->setOverflowY(style->overflowY() == OVISIBLE ? OAUTO : style->overflowY()); in adjustRenderStyle()
303 if (style->overflowX() == OVISIBLE && style->overflowY() != OVISIBLE) { in adjustRenderStyle()
308 } else if (style->overflowY() == OVISIBLE && style->overflowX() != OVISIBLE) { in adjustRenderStyle()
322 if (style->overflowX() != OVISIBLE && style->overflowX() != OHIDDEN) in adjustRenderStyle()
323 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
324 if (style->overflowY() != OVISIBLE && style->overflowY() != OHIDDEN) in adjustRenderStyle()
325 style->setOverflowY(OVISIBLE); in adjustRenderStyle()
330 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
331 style->setOverflowY(OVISIBLE); in adjustRenderStyle()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderRegion.cpp112 bool clipX = style()->overflowX() != OVISIBLE; in overflowRectForFlowThreadPortion()
119 bool clipY = style()->overflowY() != OVISIBLE; in overflowRectForFlowThreadPortion()
DRenderBox.cpp339 if (styleToUse->overflowX() != OVISIBLE && !isRootObject && isRenderBlock()) { in updateFromStyle()
346 && document().documentElement()->renderer()->style()->overflowX() == OVISIBLE) { in updateFromStyle()
DRenderBlock.cpp4606 if (style()->overflowY() != OVISIBLE) { in inlineBlockBaseline()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyleConstants.h133 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OPAGEDX, OPAGEDY enumerator
DRenderStyle.h1537 static EOverflow initialOverflowX() { return OVISIBLE; } in initialOverflowX()
1538 static EOverflow initialOverflowY() { return OVISIBLE; } in initialOverflowY()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSPrimitiveValueMappings.h2109 case OVISIBLE: in CSSPrimitiveValue()
2138 return OVISIBLE; in EOverflow()
2156 return OVISIBLE; in EOverflow()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp638 …documentOrBodyRenderer = documentRenderer->style()->overflowX() == OVISIBLE && isHTMLHtmlElement(d… in applyPaginationToViewport()
692 …RenderObject* o = rootRenderer->style()->overflowX() == OVISIBLE && isHTMLHtmlElement(document->do… in calculateScrollbarModesForLayout()