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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp3087 LayoutUnit expandedLogicalHeight = borderBefore() + paddingBefore() + columnCount(colInfo) * columnLogicalHeight + borderAfter() + paddingAfter() + scrollbarLogicalHeight(); local
3089 return LayoutPoint(point.x(), expandedLogicalHeight - point.y());
3090 return LayoutPoint(expandedLogicalHeight - point.x(), point.y());
3101 LayoutUnit expandedLogicalHeight = borderBefore() + paddingBefore() + columnCount(colInfo) * columnLogicalHeight + borderAfter() + paddingAfter() + scrollbarLogicalHeight(); local
3104 rect.setY(expandedLogicalHeight - rect.maxY());
3106 rect.setX(expandedLogicalHeight - rect.maxX());

Completed in 44 milliseconds