Home | History | Annotate | Download | only in inspector

Lines Matching refs:renderBox

48 #include "core/rendering/RenderBox.h"
266 RenderBox* renderBox = toRenderBox(renderer);
268 // RenderBox returns the "pure" content area box, exclusive of the scrollbars (if present), which also count towards the content area in CSS.
269 contentBox = renderBox->contentBoxRect();
270 contentBox.setWidth(contentBox.width() + renderBox->verticalScrollbarWidth());
271 contentBox.setHeight(contentBox.height() + renderBox->horizontalScrollbarHeight());
273 paddingBox = LayoutRect(contentBox.x() - renderBox->paddingLeft(), contentBox.y() - renderBox->paddingTop(),
274 contentBox.width() + renderBox->paddingLeft() + renderBox->paddingRight(), contentBox.height() + renderBox->paddingTop() + renderBox->paddingBottom());
275 borderBox = LayoutRect(paddingBox.x() - renderBox->borderLeft(), paddingBox.y() - renderBox->borderTop(),
276 paddingBox.width() + renderBox->borderLeft() + renderBox->borderRight(), paddingBox.height() + renderBox->borderTop() + renderBox->borderBottom());
277 marginBox = LayoutRect(borderBox.x() - renderBox->marginLeft(), borderBox.y() - renderBox->marginTop(),
278 borderBox.width() + renderBox->marginWidth(), borderBox.height() + renderBox->marginHeight());
581 RenderBox* renderBox = toRenderBox(renderer);
582 const ShapeOutsideInfo* shapeOutsideInfo = renderBox->shapeOutsideInfo();
587 *bounds = renderBox->localToAbsoluteQuad(FloatRect(shapeBounds));