OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lineoverlapsshapepaddingbounds
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
BoxShapeTest.cpp
102
EXPECT_TRUE(shape->
lineOverlapsShapePaddingBounds
(21, 1));
103
EXPECT_TRUE(shape->
lineOverlapsShapePaddingBounds
(20, 0));
104
EXPECT_TRUE(shape->
lineOverlapsShapePaddingBounds
(-10, 200));
105
EXPECT_TRUE(shape->
lineOverlapsShapePaddingBounds
(25, 35));
106
EXPECT_TRUE(shape->
lineOverlapsShapePaddingBounds
(29, 1));
108
EXPECT_FALSE(shape->
lineOverlapsShapePaddingBounds
(18, 2));
109
EXPECT_FALSE(shape->
lineOverlapsShapePaddingBounds
(30, 1));
110
EXPECT_FALSE(shape->
lineOverlapsShapePaddingBounds
(100, 200));
ShapeInsideInfo.h
99
return computedShape()->
lineOverlapsShapePaddingBounds
(m_shapeLineTop, m_lineHeight);
Shape.h
76
bool
lineOverlapsShapePaddingBounds
(LayoutUnit lineTop, LayoutUnit lineHeight) const { return lineOverlapsBoundingBox(lineTop, lineHeight, shapePaddingLogicalBoundingBox()); }
Completed in 452 milliseconds