OLD | NEW |
1 library svg; | 1 library svg; |
2 | 2 |
3 import 'dart:html'; | 3 import 'dart:html'; |
4 import 'dart:nativewrappers'; | 4 import 'dart:nativewrappers'; |
5 // DO NOT EDIT | 5 // DO NOT EDIT |
6 // Auto-generated dart:svg library. | 6 // Auto-generated dart:svg library. |
7 | 7 |
8 | 8 |
9 | 9 |
10 | 10 |
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1371 // WARNING: Do not edit - generated code. | 1371 // WARNING: Do not edit - generated code. |
1372 | 1372 |
1373 | 1373 |
1374 /// @domName SVGElementInstance | 1374 /// @domName SVGElementInstance |
1375 class ElementInstance extends EventTarget { | 1375 class ElementInstance extends EventTarget { |
1376 ElementInstance.internal(): super.internal(); | 1376 ElementInstance.internal(): super.internal(); |
1377 | 1377 |
1378 /** | 1378 /** |
1379 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve
ntTarget.dispatchEvent | 1379 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve
ntTarget.dispatchEvent |
1380 */ | 1380 */ |
| 1381 /// @docsEditable |
1381 ElementInstanceEvents get on => | 1382 ElementInstanceEvents get on => |
1382 new ElementInstanceEvents(this); | 1383 new ElementInstanceEvents(this); |
1383 | 1384 |
1384 | 1385 |
1385 /** @domName SVGElementInstance.childNodes */ | 1386 /** @domName SVGElementInstance.childNodes */ |
1386 List<ElementInstance> get childNodes native "SVGElementInstance_childNodes_Get
ter"; | 1387 List<ElementInstance> get childNodes native "SVGElementInstance_childNodes_Get
ter"; |
1387 | 1388 |
1388 | 1389 |
1389 /** @domName SVGElementInstance.correspondingElement */ | 1390 /** @domName SVGElementInstance.correspondingElement */ |
1390 SvgElement get correspondingElement native "SVGElementInstance_correspondingEl
ement_Getter"; | 1391 SvgElement get correspondingElement native "SVGElementInstance_correspondingEl
ement_Getter"; |
(...skipping 6682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8073 List<ElementInstance> getRange(int start, int rangeLength) => | 8074 List<ElementInstance> getRange(int start, int rangeLength) => |
8074 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); | 8075 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); |
8075 | 8076 |
8076 // -- end List<ElementInstance> mixins. | 8077 // -- end List<ElementInstance> mixins. |
8077 | 8078 |
8078 | 8079 |
8079 /** @domName SVGElementInstanceList.item */ | 8080 /** @domName SVGElementInstanceList.item */ |
8080 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; | 8081 ElementInstance item(int index) native "SVGElementInstanceList_item_Callback"; |
8081 | 8082 |
8082 } | 8083 } |
OLD | NEW |