OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:includepadding
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp
636
bool
includePadding
= bgLayer->clip() == ContentFillBox;
637
LayoutRect clipRect = LayoutRect(scrolledPaintRect.x() + bLeft + (
includePadding
? pLeft : LayoutUnit()),
638
scrolledPaintRect.y() + borderTop() + (
includePadding
? paddingTop() : LayoutUnit()),
639
scrolledPaintRect.width() - bLeft - bRight - (
includePadding
? pLeft + pRight : LayoutUnit()),
640
scrolledPaintRect.height() - borderTop() - borderBottom() - (
includePadding
? paddingTop() + paddingBottom() : LayoutUnit()));
[
all
...]
Completed in 754 milliseconds