Index: Source/core/dom/Element.h |
diff --git a/Source/core/dom/Element.h b/Source/core/dom/Element.h |
index 8b7fa740c332df750c8eeba6c33007fc644f8a7c..788c15b05180e8186cea26e363bc6b8197f9cc99 100644 |
--- a/Source/core/dom/Element.h |
+++ b/Source/core/dom/Element.h |
@@ -171,7 +171,7 @@ public: |
// Internal methods that assume the existence of attribute storage, one should use hasAttributes() |
// before calling them. This is not a trivial getter and its return value should be cached for |
// performance. |
- AttributeIteratorAccessor attributesIterator() const { return elementData()->attributesIterator(); } |
+ AttributeCollection attributes() const { return elementData()->attributes(); } |
size_t attributeCount() const; |
const Attribute& attributeAt(unsigned index) const; |
const Attribute* findAttributeByName(const QualifiedName&) const; |
@@ -284,7 +284,7 @@ public: |
virtual void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) { } |
// For exposing to DOM only. |
- NamedNodeMap* attributes() const; |
+ NamedNodeMap* attributesForBindings() const; |
enum AttributeModificationReason { |
ModifiedDirectly, |