Home | History | Annotate | Download | only in style

Lines Matching defs:BorderEdge

6 #include "core/rendering/style/BorderEdge.h"
10 BorderEdge::BorderEdge(int edgeWidth, const Color& edgeColor, EBorderStyle edgeStyle, bool edgeIsTransparent, bool edgeIsPresent)
21 BorderEdge::BorderEdge()
29 bool BorderEdge::hasVisibleColorAndStyle() const
34 bool BorderEdge::shouldRender() const { return isPresent && width && hasVisibleColorAndStyle(); }
35 bool BorderEdge::presentButInvisible() const { return usedWidth() && !hasVisibleColorAndStyle(); }
36 bool BorderEdge::obscuresBackgroundEdge(float scale) const
49 bool BorderEdge::obscuresBackground() const
60 int BorderEdge::usedWidth() const
65 void BorderEdge::getDoubleBorderStripeWidths(int& outerWidth, int& innerWidth) const
79 bool BorderEdge::sharesColorWith(const BorderEdge& other) const