Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: tools/dom/src/AttributeMap.dart

Issue 15814008: Cleaning up some DOM APIs which were marked as deprecated because they were moved or renamed. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of html; 5 part of html;
6 6
7 abstract class _AttributeMap implements Map<String, String> { 7 abstract class _AttributeMap implements Map<String, String> {
8 final Element _element; 8 final Element _element;
9 9
10 _AttributeMap(this._element); 10 _AttributeMap(this._element);
(...skipping 26 matching lines...) Expand all
37 f(key, value); 37 f(key, value);
38 } 38 }
39 } 39 }
40 40
41 Iterable<String> get keys { 41 Iterable<String> get keys {
42 // TODO: generate a lazy collection instead. 42 // TODO: generate a lazy collection instead.
43 var attributes = _element.$dom_attributes; 43 var attributes = _element.$dom_attributes;
44 var keys = new List<String>(); 44 var keys = new List<String>();
45 for (int i = 0, len = attributes.length; i < len; i++) { 45 for (int i = 0, len = attributes.length; i < len; i++) {
46 if (_matches(attributes[i])) { 46 if (_matches(attributes[i])) {
47 keys.add(attributes[i].localName); 47 keys.add(attributes[i].name);
48 } 48 }
49 } 49 }
50 return keys; 50 return keys;
51 } 51 }
52 52
53 Iterable<String> get values { 53 Iterable<String> get values {
54 // TODO: generate a lazy collection instead. 54 // TODO: generate a lazy collection instead.
55 var attributes = _element.$dom_attributes; 55 var attributes = _element.$dom_attributes;
56 var values = new List<String>(); 56 var values = new List<String>();
57 for (int i = 0, len = attributes.length; i < len; i++) { 57 for (int i = 0, len = attributes.length; i < len; i++) {
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 // TODO: Use lazy iterator when it is available on Map. 221 // TODO: Use lazy iterator when it is available on Map.
222 bool get isEmpty => length == 0; 222 bool get isEmpty => length == 0;
223 223
224 bool get isNotEmpty => !isEmpty; 224 bool get isNotEmpty => !isEmpty;
225 225
226 // Helpers. 226 // Helpers.
227 String _attr(String key) => 'data-$key'; 227 String _attr(String key) => 'data-$key';
228 bool _matches(String key) => key.startsWith('data-'); 228 bool _matches(String key) => key.startsWith('data-');
229 String _strip(String key) => key.substring(5); 229 String _strip(String key) => key.substring(5);
230 } 230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698