Dart DOM: Fix syntax error.

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@73 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
arv@google.com 2011-10-05 21:43:42 +00:00
parent 1e650a0e64
commit 515c527ecd

View file

@ -283,7 +283,7 @@ class ElementAttributeMap implements Map<String, String> {
void clear() {
final attributes = _element.attributes;
for (int i = len = attributes.length - 1; i >= 0; i--) {
for (int i = attributes.length - 1; i >= 0; i--) {
_element.removeAttribute(attributes.item(i).name);
}
}