Home
last modified time | relevance | path

Searched refs:FixedPosition (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderFullScreen.cpp59 fullscreenStyle->setPosition(FixedPosition); in createFullScreenStyle()
DRenderBox.cpp276 … else if (newStyle->position() == AbsolutePosition || newStyle->position() == FixedPosition) in styleWillChange()
278 …ositioned() && (newStyle->position() == AbsolutePosition || newStyle->position() == FixedPosition)) in styleWillChange()
285 bool newStyleIsFixed = newStyle && newStyle->position() == FixedPosition; in styleWillChange()
286 bool oldStyleIsFixed = style() && style()->position() == FixedPosition; in styleWillChange()
368 setPositioned(style()->position() == AbsolutePosition || style()->position() == FixedPosition); in updateBoxModelInfoFromStyle()
1219 bool isFixedPos = style()->position() == FixedPosition; in mapLocalToContainer()
1254 bool isFixedPos = style()->position() == FixedPosition; in mapAbsoluteToLocalPoint()
1289 if (style()->position() != AbsolutePosition && style()->position() != FixedPosition) { in offsetFromContainer()
1452 fixed = position == FixedPosition; in computeRectForRepaint()
1456 } else if (position == FixedPosition) in computeRectForRepaint()
[all …]
DLayoutState.cpp46 bool fixed = renderer->isPositioned() && renderer->style()->position() == FixedPosition; in LayoutState()
DRenderObject.cpp581 …if (b && !alreadyDirty && markParents && (isText() || (style()->position() != FixedPosition && sty… in setPreferredLogicalWidthsDirty()
598 if (o->style()->position() == FixedPosition || o->style()->position() == AbsolutePosition) in invalidateContainerPreferredLogicalWidths()
625 if (!isText() && m_style->position() == FixedPosition) { in containingBlock()
1706 …>isFloating() && newStyle->position() != AbsolutePosition && newStyle->position() != FixedPosition) in styleWillChange()
2028 if (pos == FixedPosition) { in container()
2504 if (isRoot() || isBody() || (isPositioned() && style()->position() == FixedPosition)) in offsetParent()
DRenderObjectChildList.cpp370 …doElementStyle->position() == AbsolutePosition || pseudoElementStyle->position() == FixedPosition)) in updateBeforeAfterContent()
DRenderLayer.cpp415 if (fixed || renderer()->style()->position() == FixedPosition) { in updateRepaintRectsAfterScroll()
1160 …if (position == FixedPosition && (!ancestorLayer || ancestorLayer == renderer()->view()->layer()))… in convertToLayerCoords()
1169 if (position == FixedPosition) { in convertToLayerCoords()
1205 if (position == AbsolutePosition || position == FixedPosition) { in convertToLayerCoords()
3422 if (renderer()->style()->position() == FixedPosition) { in scrollTo()
3486 … backgroundRect = renderer()->style()->position() == FixedPosition ? parentRects.fixedClipRect() : in scrollTo()
DRenderLayer.h328 …() const { return renderer()->isPositioned() && renderer()->style()->position() == FixedPosition; } in isFixed()
DRenderObject.h1017 …if (!last->isText() && (last->style()->position() == FixedPosition || last->style()->position() ==… in markContainingBlocksForLayout()
DRenderInline.cpp1057 …isBlockFlow() && style()->position() != AbsolutePosition && style()->position() != FixedPosition) { in computeRectForRepaint()
DRenderBlock.cpp230 …ositioned() && (newStyle->position() == AbsolutePosition || newStyle->position() == FixedPosition)) in styleWillChange()
1470 if (positionedObject->style()->position() != FixedPosition) in addOverflowFromPositionedObjects()
/external/webkit/Source/WebCore/rendering/style/
DRenderStyleConstants.h90 StaticPosition, RelativePosition, AbsolutePosition, FixedPosition enumerator
/external/webkit/Source/WebCore/css/
DCSSPrimitiveValueMappings.h1526 case FixedPosition: in CSSPrimitiveValue()
1542 return FixedPosition; in EPosition()
DCSSComputedStyleDeclaration.cpp412 if (style->position() == AbsolutePosition || style->position() == FixedPosition) { in getPositionOffsetValue()
DCSSStyleSelector.cpp1842 …(style->position() == AbsolutePosition || style->position() == FixedPosition || style->floating() … in adjustRenderStyle()
/external/webkit/Source/WebCore/platform/graphics/android/
DGraphicsLayerAndroid.cpp248 if (view->isPositioned() && view->style()->position() == FixedPosition) { in updatePositionedLayers()
/external/webkit/Source/WebCore/page/
DFrameView.cpp1191 if (renderBox->style()->position() != FixedPosition) in updatePositionedObjects()
1281 if (renderBox->style()->position() != FixedPosition) in scrollContentsFastPath()
/external/webkit/Source/WebCore/editing/
DTextIterator.cpp214 return position == AbsolutePosition || position == FixedPosition; in ignoresContainerClip()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-1020260 - renamed STATIC, FIXED, RELATIVE, ABSOLUTE to StaticPosition, FixedPosition, etc