HomeSort by relevance Sort by last modified time
    Searched refs:isCurrentColor (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleColor.h 43 bool isCurrentColor() const { return m_currentColor; }
44 Color color() const { ASSERT(!isCurrentColor()); return m_color; }
56 if (a.isCurrentColor() || b.isCurrentColor())
57 return a.isCurrentColor() && b.isCurrentColor();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.h 74 void setTextStrokeColor(const StyleColor& color) { m_textStrokeColor = color.resolve(Color()); m_textStrokeColorIsCurrentColor = color.isCurrentColor(); }
75 void setTextFillColor(const StyleColor& color) { m_textFillColor = color.resolve(Color()); m_textFillColorIsCurrentColor = color.isCurrentColor(); }
76 void setTextEmphasisColor(const StyleColor& color) { m_textEmphasisColor = color.resolve(Color()); m_textEmphasisColorIsCurrentColor = color.isCurrentColor(); }
77 void setVisitedLinkTextStrokeColor(const StyleColor& color) { m_visitedLinkTextStrokeColor = color.resolve(Color()); m_visitedLinkTextStrokeColorIsCurrentColor = color.isCurrentColor(); }
78 void setVisitedLinkTextFillColor(const StyleColor& color) { m_visitedLinkTextFillColor = color.resolve(Color()); m_visitedLinkTextFillColorIsCurrentColor = color.isCurrentColor(); }
79 void setVisitedLinkTextEmphasisColor(const StyleColor& color) { m_visitedLinkTextEmphasisColor = color.resolve(Color()); m_visitedLinkTextEmphasisColorIsCurrentColor = color.isCurrentColor(); }
AppliedTextDecoration.h 22 bool isSimpleUnderline() const { return m_line == TextDecorationUnderline && m_style == TextDecorationStyleSolid && m_color.isCurrentColor(); }
BorderValue.h 84 m_colorIsCurrentColor = color.isCurrentColor();
CollapsedBorderValue.h 46 , m_colorIsCurrentColor(color.isCurrentColor())
RenderStyle.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasStyle.h 54 bool isCurrentColor() const { return m_type == CurrentColor || m_type == CurrentColorWithOverrideAlpha; }
CanvasRenderingContext2D.cpp 425 if (style->isCurrentColor()) {
458 if (style->isCurrentColor()) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedColor.cpp 32 return m_styleColor.isCurrentColor() ? "currentColor" : m_styleColor.color().serializedAsCSSComponentValue();
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 489 if (renderStyle->textFillColor().isCurrentColor())
491 if (renderStyle->textStrokeColor().isCurrentColor())
    [all...]

Completed in 112 milliseconds