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.h1263 static EOverflow initialOverflowX() { return OVISIBLE; } in initialOverflowX()
1264 static EOverflow initialOverflowY() { return OVISIBLE; } in initialOverflowY()
/external/webkit/Source/WebCore/css/
DCSSStyleSelector.cpp1901 style->setOverflowX(style->overflowX() == OVISIBLE ? OAUTO : style->overflowX()); in adjustRenderStyle()
1902 style->setOverflowY(style->overflowY() == OVISIBLE ? OAUTO : style->overflowY()); in adjustRenderStyle()
1918 else if (style->overflowX() == OVISIBLE && style->overflowY() != OVISIBLE) in adjustRenderStyle()
1920 else if (style->overflowY() == OVISIBLE && style->overflowX() != OVISIBLE) in adjustRenderStyle()
1927 if (style->overflowX() != OVISIBLE && style->overflowX() != OHIDDEN) in adjustRenderStyle()
1928 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
1929 if (style->overflowY() != OVISIBLE && style->overflowY() != OHIDDEN) in adjustRenderStyle()
1930 style->setOverflowY(OVISIBLE); in adjustRenderStyle()
1935 style->setOverflowX(OVISIBLE); in adjustRenderStyle()
1936 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.cpp565 …RenderObject* o = rootRenderer->style()->overflowX() == OVISIBLE && document->documentElement()->h… in calculateScrollbarModesForLayout()