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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBackgroundData.cpp 31 : m_background(BackgroundFillLayer, true)
38 , m_background(o.m_background)
46 return m_background == o.m_background && m_color == o.m_color && m_outline == o.m_outline;
51 return m_background == o.m_background && m_color == o.m_color && m_outline.visuallyEqual(o.m_outline);
StyleBackgroundData.h 50 const FillLayer& background() const { return m_background; }
60 FillLayer m_background; member in class:WebCore::StyleBackgroundData
RenderStyle.h 140 DataRef<StyleBackgroundData> m_background; member in class:WebCore::RenderStyle
405 bool hasBackgroundImage() const { return m_background->background().hasImage(); }
406 bool hasFixedBackgroundImage() const { return m_background->background().hasFixedImage(); }
536 if (m_background->outline().style() == BNONE)
538 return m_background->outline().width();
541 EBorderStyle outlineStyle() const { return m_background->outline().style(); }
542 OutlineIsAuto outlineStyleIsAuto() const { return static_cast<OutlineIsAuto>(m_background->outline().isAuto()); }
658 EFillRepeat backgroundRepeatX() const { return static_cast<EFillRepeat>(m_background->background().repeatX()); }
659 EFillRepeat backgroundRepeatY() const { return static_cast<EFillRepeat>(m_background->background().repeatY()); }
660 CompositeOperator backgroundComposite() const { return static_cast<CompositeOperator>(m_background->background().composite());
    [all...]
RenderStyle.cpp 103 , m_background(defaultStyle()->m_background)
121 m_background.init();
142 , m_background(o.m_background)
217 m_background = other->m_background;
249 && m_background == o.m_background
607 if (!m_background->outline().visuallyEqual(other.m_background->outline()))
    [all...]

Completed in 55 milliseconds