Searched defs:borderBoxLineTop (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DShapeOutsideInfo.cpp284 LayoutUnit borderBoxLineTop = lineTop - borderBoxTop; local
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);
H A DShapeOutsideInfo.h54 ShapeOutsideDeltas(LayoutUnit leftMarginBoxDelta, LayoutUnit rightMarginBoxDelta, bool lineOverlapsShape, LayoutUnit borderBoxLineTop, LayoutUnit lineHeight) argument
57 , m_borderBoxLineTop(borderBoxLineTop)
64 bool isForLine(LayoutUnit borderBoxLineTop, LayoutUnit lineHeight) argument
66 return m_isValid && m_borderBoxLineTop == borderBoxLineTop && m_lineHeight == lineHeight;

Completed in 356 milliseconds