Searched refs:hasOverflowClip (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderTableRow.h60 virtual bool requiresLayer() const { return isTransparent() || hasOverflowClip() || hasTransform() || hasMask(); }
H A DLayoutState.cpp70 if (renderer->hasOverflowClip()) {
123 if (container->hasOverflowClip()) {
H A DRenderBoxModelObject.h66 virtual bool requiresLayer() const { return isRoot() || isPositioned() || isRelPositioned() || isTransparent() || hasOverflowClip() || hasTransform() || hasMask() || hasReflection() || style()->specifiesColumns() || style()->hasFixedBackgroundImage(); }
68 virtual bool requiresLayer() const { return isRoot() || isPositioned() || isRelPositioned() || isTransparent() || hasOverflowClip() || hasTransform() || hasMask() || hasReflection() || style()->specifiesColumns(); }
H A DRenderBox.h331 bool hasAutoVerticalScrollbar() const { return hasOverflowClip() && (style()->overflowY() == OAUTO || style()->overflowY() == OOVERLAY); }
332 bool hasAutoHorizontalScrollbar() const { return hasOverflowClip() && (style()->overflowX() == OAUTO || style()->overflowX() == OOVERLAY); }
334 bool scrollsOverflowX() const { return hasOverflowClip() && (style()->overflowX() == OSCROLL || hasAutoHorizontalScrollbar()); }
335 bool scrollsOverflowY() const { return hasOverflowClip() && (style()->overflowY() == OSCROLL || hasAutoVerticalScrollbar()); }
H A DRenderBox.cpp261 s_hadOverflowClip = hasOverflowClip();
316 if (hasOverflowClip() && oldStyle && style() && oldStyle->effectiveZoom() != style()->effectiveZoom()) {
433 if (hasOverflowClip())
444 if (hasOverflowClip())
453 return hasOverflowClip() ? layer()->scrollXOffset() : 0;
458 return hasOverflowClip() ? layer()->scrollYOffset() : 0;
463 if (hasOverflowClip())
469 if (hasOverflowClip())
589 return hasOverflowClip() && !layer()->hasOverlayScrollbars()
595 return hasOverflowClip()
[all...]
H A DRenderListItem.cpp330 if (o->hasOverflowClip())
338 if (o->hasOverflowClip())
H A DRenderLayer.cpp1299 if (renderer()->hasOverflowClip() && !restrictedByLineClamp) {
1476 if (renderer()->hasOverflowClip() && !restrictedByLineClamp) {
1639 if (!inResizeMode() || !renderer()->hasOverflowClip() || !renderer()->node())
2038 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
2329 if (!renderer()->hasOverflowClip())
2456 if (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE)
2470 if (!m_hBar && !m_vBar && (!renderer()->hasOverflowClip() || renderer()->style()->resize() == RESIZE_NONE))
3433 if (renderer()->hasOverflowClip() || renderer()->hasClip()) {
3445 if (renderer()->hasOverflowClip()) {
3516 if (renderer()->hasOverflowClip() || rendere
[all...]
H A DRenderBlock.cpp98 && !block->isFloating() && !block->isTableCell() && !block->hasOverflowClip() && !block->isInlineBlockOrInlineTable()
425 if (!curr->isRenderBlock() || curr->isFloatingOrPositioned() || curr->isTableCell() || curr->isRoot() || curr->isRenderView() || curr->hasOverflowClip()
1154 if (block->hasOverflowClip()) {
1163 if (hasOverflowClip()) {
1337 // it had to lay out. We wouldn't need the hasOverflowClip() hack in that case either.
1340 if (hasOverflowClip()) {
1342 // Note the old code did this as well but even for overflow:visible. The addition of hasOverflowClip() at least tightens up the hack a bit.
1359 if (hasOverflowClip()) {
1393 if (!hasOverflowClip())
1401 if (!hasOverflowClip())
[all...]
H A DRenderFlexibleBox.cpp183 if (hasOverflowClip() && style()->overflowY() == OSCROLL) {
289 if (hasOverflowClip())
H A DRenderObject.h432 bool hasOverflowClip() const { return m_hasOverflowClip; } function in class:WebCore::RenderObject
995 || (obj->hasOverflowClip() && !obj->style()->width().isIntrinsicOrAuto() && !obj->style()->height().isIntrinsicOrAuto() && !obj->style()->height().isPercent() && !obj->isTableCell())
H A DRenderInline.cpp989 if (cb->hasOverflowClip()) {
1077 if (o->hasOverflowClip()) {
1113 if (container->hasOverflowClip())
H A DRenderLayerCompositor.cpp489 if (layer->renderer()->hasOverflowClip() || layer->renderer()->hasMask()) {
588 if (curr->renderer()->hasOverflowClip() || curr->renderer()->hasClip())
1520 (layer->renderer()->hasOverflowClip() || layer->renderer()->hasClip());
H A DRenderBlockLineLayout.cpp751 bool hasTextOverflow = style()->textOverflow() && hasOverflowClip();
2418 int endPadding = hasOverflowClip() ? paddingEnd() : 0;
2420 if (hasOverflowClip() && !endPadding && node() && node()->rendererIsEditable() && node() == node()->rootEditableElement() && style()->isLeftToRightDirection())
2424 if (!hasOverflowClip())
H A DRenderObject.cpp1363 if (o->hasOverflowClip()) {
1882 if (o->hasOverflowClip())
1893 if (o->hasOverflowClip())
1955 if (o->hasOverflowClip())
H A DRenderTextControlSingleLine.cpp62 if (renderer->hasOverflowClip())
H A DRenderTreeAsText.cpp615 if (l.renderer()->hasOverflowClip()) {
H A DRenderLayerBacking.cpp319 if (renderer->hasOverflowClip())
H A DRenderTable.cpp1263 if (!hasOverflowClip() || overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos))) {
H A DRenderTableSection.cpp1269 if (hasOverflowClip() && !overflowClipRect(tx, ty).intersects(result.rectForPoint(xPos, yPos)))
H A DRenderBoxModelObject.cpp585 bool clippedWithLocalScrolling = hasOverflowClip() && bgLayer->attachment() == LocalBackgroundAttachment;
/external/webkit/Source/WebCore/editing/
H A DDeleteButtonController.cpp85 if (renderer->hasOverflowClip())
H A Dvisible_units.cpp564 if (containingBlock->hasOverflowClip())
671 if (containingBlock->hasOverflowClip())
H A DTextIterator.cpp203 if (!renderer || !renderer->isBox() || !renderer->hasOverflowClip())
/external/webkit/Source/WebCore/dom/
H A DElement.cpp303 if (rend->hasOverflowClip()) {

Completed in 634 milliseconds