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

  /external/webkit/WebCore/rendering/style/
StyleBackgroundData.cpp 31 : m_background(BackgroundFillLayer)
38 , m_background(o.m_background)
46 return m_background == o.m_background && m_color == o.m_color && m_outline == o.m_outline;
StyleBackgroundData.h 48 FillLayer m_background; member in class:WebCore::StyleBackgroundData
RenderStyle.h 342 return background->m_background.hasImage();
344 bool hasBackgroundImage() const { return background->m_background.hasImage(); }
345 bool hasFixedBackgroundImage() const { return background->m_background.hasFixedImage(); }
532 StyleImage* backgroundImage() const { return background->m_background.m_image.get(); }
533 EFillRepeat backgroundRepeatX() const { return static_cast<EFillRepeat>(background->m_background.m_repeatX); }
534 EFillRepeat backgroundRepeatY() const { return static_cast<EFillRepeat>(background->m_background.m_repeatY); }
535 CompositeOperator backgroundComposite() const { return static_cast<CompositeOperator>(background->m_background.m_composite); }
536 EFillAttachment backgroundAttachment() const { return static_cast<EFillAttachment>(background->m_background.m_attachment); }
537 EFillBox backgroundClip() const { return static_cast<EFillBox>(background->m_background.m_clip); }
538 EFillBox backgroundOrigin() const { return static_cast<EFillBox>(background->m_background.m_origin);
    [all...]

Completed in 45 milliseconds