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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp1040 LayoutUnit outlineSize = style()->outlineSize(); local
1041 paintInvalidationRect.inflate(outlineSize);
1045 if (outlineSize) {
1048 paintInvalidationRect.unite(curr->rectWithOutlineForPaintInvalidation(paintInvalidationContainer, outlineSize));
1052 paintInvalidationRect.unite(continuation()->rectWithOutlineForPaintInvalidation(paintInvalidationContainer, outlineSize));
H A DRenderTableCell.cpp329 int outlineSize = style()->outlineSize(); local
330 int left = std::max(borderHalfLeft(true), outlineSize);
331 int right = std::max(borderHalfRight(true), outlineSize);
332 int top = std::max(borderHalfTop(true), outlineSize);
333 int bottom = std::max(borderHalfBottom(true), outlineSize);
H A DRenderBox.cpp4012 int outlineSize = GraphicsContext::focusRingOutsetExtent(style()->outlineOffset(), style()->outlineWidth()); local
4013 top = std::max(top, -rect.y() + outlineSize);
4014 right = std::max(right, rect.maxX() - width() + outlineSize);
4015 bottom = std::max(bottom, rect.maxY() - height() + outlineSize);
4016 left = std::max(left, -rect.x() + outlineSize);
4018 LayoutUnit outlineSize = style()->outlineSize(); local
4019 top = std::max(top, outlineSize);
4020 right = std::max(right, outlineSize);
4021 bottom = std::max(bottom, outlineSize);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DRenderStyle.h517 unsigned short outlineSize() const { return max(0, outlineWidth() + outlineOffset()); } function in class:blink::RenderStyle

Completed in 121 milliseconds