| OLD | NEW |
| 1 library svg; | 1 library svg; |
| 2 | 2 |
| 3 import 'dart:html'; | 3 import 'dart:html'; |
| 4 // DO NOT EDIT | 4 // DO NOT EDIT |
| 5 // Auto-generated dart:svg library. | 5 // Auto-generated dart:svg library. |
| 6 | 6 |
| 7 | 7 |
| 8 | 8 |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1224 | 1224 |
| 1225 EventListenerList get submit => this['submit']; | 1225 EventListenerList get submit => this['submit']; |
| 1226 | 1226 |
| 1227 EventListenerList get unload => this['unload']; | 1227 EventListenerList get unload => this['unload']; |
| 1228 } | 1228 } |
| 1229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1229 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1230 // for details. All rights reserved. Use of this source code is governed by a | 1230 // for details. All rights reserved. Use of this source code is governed by a |
| 1231 // BSD-style license that can be found in the LICENSE file. | 1231 // BSD-style license that can be found in the LICENSE file. |
| 1232 | 1232 |
| 1233 | 1233 |
| 1234 /// @domName ElementTimeControl |
| 1235 abstract class ElementTimeControl { |
| 1236 |
| 1237 /// @domName ElementTimeControl.beginElement; @docsEditable true |
| 1238 void beginElement(); |
| 1239 |
| 1240 /// @domName ElementTimeControl.beginElementAt; @docsEditable true |
| 1241 void beginElementAt(num offset); |
| 1242 |
| 1243 /// @domName ElementTimeControl.endElement; @docsEditable true |
| 1244 void endElement(); |
| 1245 |
| 1246 /// @domName ElementTimeControl.endElementAt; @docsEditable true |
| 1247 void endElementAt(num offset); |
| 1248 } |
| 1249 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 1250 // for details. All rights reserved. Use of this source code is governed by a |
| 1251 // BSD-style license that can be found in the LICENSE file. |
| 1252 |
| 1253 |
| 1234 /// @domName SVGEllipseElement; @docsEditable true | 1254 /// @domName SVGEllipseElement; @docsEditable true |
| 1235 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl
e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" { | 1255 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl
e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" { |
| 1236 | 1256 |
| 1237 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); | 1257 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e
llipse"); |
| 1238 | 1258 |
| 1239 /// @domName SVGEllipseElement.cx; @docsEditable true | 1259 /// @domName SVGEllipseElement.cx; @docsEditable true |
| 1240 final AnimatedLength cx; | 1260 final AnimatedLength cx; |
| 1241 | 1261 |
| 1242 /// @domName SVGEllipseElement.cy; @docsEditable true | 1262 /// @domName SVGEllipseElement.cy; @docsEditable true |
| 1243 final AnimatedLength cy; | 1263 final AnimatedLength cy; |
| (...skipping 5019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6263 } | 6283 } |
| 6264 | 6284 |
| 6265 List<ElementInstance> getRange(int start, int rangeLength) => | 6285 List<ElementInstance> getRange(int start, int rangeLength) => |
| 6266 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); | 6286 _Lists.getRange(this, start, rangeLength, <ElementInstance>[]); |
| 6267 | 6287 |
| 6268 // -- end List<ElementInstance> mixins. | 6288 // -- end List<ElementInstance> mixins. |
| 6269 | 6289 |
| 6270 /// @domName SVGElementInstanceList.item; @docsEditable true | 6290 /// @domName SVGElementInstanceList.item; @docsEditable true |
| 6271 ElementInstance item(int index) native; | 6291 ElementInstance item(int index) native; |
| 6272 } | 6292 } |
| OLD | NEW |