Index: Source/core/editing/MarkupAccumulator.cpp |
diff --git a/Source/core/editing/MarkupAccumulator.cpp b/Source/core/editing/MarkupAccumulator.cpp |
index 8bcb2c461d7a4f3a542a1ccecb67e49326c6a2ac..3dc1122111ab3c52e7003d977169e82893dc917f 100644 |
--- a/Source/core/editing/MarkupAccumulator.cpp |
+++ b/Source/core/editing/MarkupAccumulator.cpp |
@@ -386,8 +386,8 @@ void MarkupAccumulator::appendElement(StringBuilder& result, Element& element, N |
appendOpenTag(result, element, namespaces); |
AttributeCollection attributes = element.attributes(); |
- AttributeCollection::const_iterator end = attributes.end(); |
- for (AttributeCollection::const_iterator it = attributes.begin(); it != end; ++it) |
+ AttributeCollection::iterator end = attributes.end(); |
+ for (AttributeCollection::iterator it = attributes.begin(); it != end; ++it) |
appendAttribute(result, element, *it, namespaces); |
// Give an opportunity to subclasses to add their own attributes. |