Home
last modified time | relevance | path

Searched refs:floatTop (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DFloatingObjects.cpp437 inline static bool rangesIntersect(int floatTop, int floatBottom, int objectTop, int objectBottom) in rangesIntersect() argument
439 if (objectTop >= floatBottom || objectBottom < floatTop) in rangesIntersect()
443 if (objectTop >= floatTop) in rangesIntersect()
447 if (objectTop < floatTop && objectBottom > floatBottom) in rangesIntersect()
451 if (objectBottom > objectTop && objectBottom > floatTop && objectBottom <= floatBottom) in rangesIntersect()
DRenderBlockLineLayout.cpp1841 …LayoutUnit floatTop = isHorizontalWritingMode() ? floats[floatIndex].rect.y() : floats[floatIndex]… in checkFloatsInCleanLine() local
1844 floatHeight = min(floatHeight, LayoutUnit::max() - floatTop); in checkFloatsInCleanLine()
1846 markLinesDirtyInBlockRange(line->lineBottomWithLeading(), floatTop + floatHeight, line); in checkFloatsInCleanLine()