Home | History | Annotate | Download | only in style

Lines Matching refs:contentData

32 #include "core/rendering/style/ContentData.h"
743 void RenderStyle::appendContent(PassOwnPtr<ContentData> contentData)
745 OwnPtr<ContentData>& content = rareNonInheritedData.access()->m_content;
746 ContentData* lastContent = content.get();
751 lastContent->setNext(contentData);
753 content = contentData;
762 appendContent(ContentData::create(image));
766 rareNonInheritedData.access()->m_content = ContentData::create(image);
771 OwnPtr<ContentData>& content = rareNonInheritedData.access()->m_content;
773 ContentData* lastContent = content.get();
778 // We attempt to merge with the last ContentData if possible.
783 lastContent->setNext(ContentData::create(string));
789 content = ContentData::create(string);
798 appendContent(ContentData::create(counter));
802 rareNonInheritedData.access()->m_content = ContentData::create(counter);
808 appendContent(ContentData::create(quote));
812 rareNonInheritedData.access()->m_content = ContentData::create(quote);