OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:computedCSSContentBoxRect
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBox.h
166
// This returns the content area of the box (excluding padding and border). The only difference with contentBoxRect is that
computedCSSContentBoxRect
168
LayoutRect
computedCSSContentBoxRect
() const { return LayoutRect(borderLeft() + computedCSSPaddingLeft(), borderTop() + computedCSSPaddingTop(), clientWidth() - computedCSSPaddingLeft() - computedCSSPaddingRight(), clientHeight() - computedCSSPaddingTop() - computedCSSPaddingBottom()); }
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp
735
return box->style()->boxSizing() == BORDER_BOX ? box->borderBoxRect() : box->
computedCSSContentBoxRect
();
[
all
...]
Completed in 38 milliseconds