Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/style/
DRenderStyleConstants.h106 OVISIBLE, OHIDDEN, OSCROLL, OAUTO, OOVERLAY, OMARQUEE enumerator
DRenderStyle.h1235 static EOverflow initialOverflowX() { return OVISIBLE; } in initialOverflowX()
1236 static EOverflow initialOverflowY() { return OVISIBLE; } in initialOverflowY()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.cpp1905 style->setOverflowX(style->overflowX() == OVISIBLE ? OAUTO : style->overflowX()); in adjustRenderStyle()
1906 style->setOverflowY(style->overflowY() == OVISIBLE ? OAUTO : style->overflowY()); in adjustRenderStyle()
1922 else if (style->overflowX() == OVISIBLE && style->overflowY() != OVISIBLE) in adjustRenderStyle()
1924 else if (style->overflowY() == OVISIBLE && style->overflowX() != OVISIBLE) in adjustRenderStyle()
1931 if (style->overflowX() != OVISIBLE && style->overflowX() != OHIDDEN) in adjustRenderStyle()
1932 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
1933 if (style->overflowY() != OVISIBLE && style->overflowY() != OHIDDEN) in adjustRenderStyle()
1934 style->setOverflowY(OVISIBLE); in adjustRenderStyle()
1939 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
1940 style->setOverflowY(OVISIBLE); in adjustRenderStyle()
[all …]
DCSSPrimitiveValueMappings.h1436 case OVISIBLE: in CSSPrimitiveValue()
1461 return OVISIBLE; in EOverflow()
1474 return OVISIBLE; in EOverflow()
/external/webkit/Source/WebCore/rendering/
DRenderBox.cpp372 …if (style()->overflowX() != OVISIBLE && !isRootObject && (isRenderBlock() || isTableRow() || isTab… in updateBoxModelInfoFromStyle()
381 document()->documentElement()->renderer()->style()->overflowX() == OVISIBLE) in updateBoxModelInfoFromStyle()
/external/webkit/Source/WebCore/page/
DFrameView.cpp560 …RenderObject* o = rootRenderer->style()->overflowX() == OVISIBLE && document->documentElement()->h… in calculateScrollbarModesForLayout()