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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeOutsideInfo.h 54 ShapeOutsideDeltas(LayoutUnit leftMarginBoxDelta, LayoutUnit rightMarginBoxDelta, bool lineOverlapsShape, LayoutUnit borderBoxLineTop, LayoutUnit lineHeight)
57 , m_borderBoxLineTop(borderBoxLineTop)
64 bool isForLine(LayoutUnit borderBoxLineTop, LayoutUnit lineHeight)
66 return m_isValid && m_borderBoxLineTop == borderBoxLineTop && m_lineHeight == lineHeight;
ShapeOutsideInfo.cpp 284 LayoutUnit borderBoxLineTop = lineTop - borderBoxTop;
286 if (isShapeDirty() || !m_shapeOutsideDeltas.isForLine(borderBoxLineTop, lineHeight)) {
287 LayoutUnit referenceBoxLineTop = borderBoxLineTop - logicalTopOffset();
291 LineSegment segment = computedShape().getExcludedInterval((borderBoxLineTop - logicalTopOffset()), std::min(lineHeight, shapeLogicalBottom() - borderBoxLineTop));
301 m_shapeOutsideDeltas = ShapeOutsideDeltas(leftMarginBoxDelta, rightMarginBoxDelta, true, borderBoxLineTop, lineHeight);
309 m_shapeOutsideDeltas = ShapeOutsideDeltas(floatMarginBoxWidth, -floatMarginBoxWidth, false, borderBoxLineTop, lineHeight);

Completed in 74 milliseconds