mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 15:17:07 +00:00
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:
parent
1e650a0e64
commit
515c527ecd
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue