HomeSort by relevance Sort by last modified time
    Searched defs:BorderEdge (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
BorderEdge.h 13 struct BorderEdge {
14 BorderEdge(int edgeWidth, const Color& edgeColor, EBorderStyle edgeStyle, bool edgeIsTransparent, bool edgeIsPresent = true);
15 BorderEdge();
26 bool sharesColorWith(const BorderEdge& other) const;
BorderEdge.cpp 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() cons
    [all...]

Completed in 326 milliseconds