Home
last modified time | relevance | path

Searched refs:m_elementData (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.cpp1188 ASSERT(!m_elementData); in parserSetAttributes()
1194m_elementData = document().sharedObjectPool()->cachedShareableElementDataWithAttributes(attributeV… in parserSetAttributes()
1196 m_elementData = ShareableElementData::createWithAttributes(attributeVector); in parserSetAttributes()
3328 if (!other.m_elementData) { in cloneAttributesFromElement()
3329 m_elementData.clear(); in cloneAttributesFromElement()
3354 if (other.m_elementData->isUnique() in cloneAttributesFromElement()
3356 && !other.m_elementData->presentationAttributeStyle() in cloneAttributesFromElement()
3357 …&& (!other.m_elementData->inlineStyle() || !other.m_elementData->inlineStyle()->hasCSSOMWrapper())) in cloneAttributesFromElement()
3358 …const_cast<Element&>(other).m_elementData = static_cast<const UniqueElementData*>(other.m_elementD… in cloneAttributesFromElement()
3360 if (!other.m_elementData->isUnique() && !ownerDocumentsHaveDifferentCaseSensitivity) in cloneAttributesFromElement()
[all …]
DElement.h283 const ElementData* elementData() const { return m_elementData.get(); } in elementData()
681 RefPtr<ElementData> m_elementData; variable
827 return static_cast<UniqueElementData*>(m_elementData.get()); in ensureUniqueElementData()