HomeSort by relevance Sort by last modified time
    Searched refs:floatingObject (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.cpp 43 COMPILE_ASSERT(sizeof(FloatingObject) == sizeof(SameSizeAsFloatingObject), FloatingObject_should_stay_small);
45 FloatingObject::FloatingObject(RenderBox* renderer)
64 FloatingObject::FloatingObject(RenderBox* renderer, Type type, const LayoutRect& frameRect, bool shouldPaint, bool isDescendant)
79 PassOwnPtr<FloatingObject> FloatingObject::create(RenderBox* renderer)
81 OwnPtr<FloatingObject> newObj = adoptPtr(new FloatingObject(renderer));
88 PassOwnPtr<FloatingObject> FloatingObject::copyToNewContainer(LayoutSize offset, bool shouldPaint, bool isDescendant) cons
    [all...]
RenderBlockFlow.h 109 LayoutUnit logicalTopForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->y() : floatingObject->x(); }
110 LayoutUnit logicalBottomForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->maxY() : floatingObject->maxX(); }
111 LayoutUnit logicalLeftForFloat(const FloatingObject* floatingObject) const { return isHorizontalWritingMode() ? floatingObject->x() : floatingObject->y();
    [all...]
RenderBlockFlow.cpp     [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/Shapes/resources/
shapes.js 28 templateFloatingNode.className = "floatingObject";
55 var floatingObjects = document.getElementsByClassName('floatingObject');
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.cpp 276 void ShapeOutsideInfo::updateDeltasForContainingBlockLine(const RenderBlockFlow& containingBlock, const FloatingObject& floatingObject, LayoutUnit lineTop, LayoutUnit lineHeight)
278 LayoutUnit borderBoxTop = containingBlock.logicalTopForFloat(&floatingObject) + containingBlock.marginBeforeForChild(&m_renderer);
286 LayoutUnit floatMarginBoxWidth = containingBlock.logicalWidthForFloat(&floatingObject);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 50 BreakingContext(InlineBidiResolver& resolver, LineInfo& inLineInfo, LineWidth& lineWidth, RenderTextInfo& inRenderTextInfo, FloatingObject* inLastFloatFromPreviousLine, bool appliedStartWidth, RenderBlockFlow* block)
127 FloatingObject* m_lastFloatFromPreviousLine;
362 FloatingObject* floatingObject = m_block->insertFloatingObject(floatBox);
367 if (m_floatsFitOnLine && m_width.fitsOnLine(m_block->logicalWidthForFloat(floatingObject).toFloat(), ExcludeWhitespace)) {
368 m_block->positionNewFloatOnLine(floatingObject, m_lastFloatFromPreviousLine, m_lineInfo, m_width);
    [all...]

Completed in 803 milliseconds