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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 11447002: Re-trying moving AudioElement back to dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixing for dartium. Created 8 years 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 library svg; 1 library svg;
2 2
3 import 'dart:collection'; 3 import 'dart:collection';
4 import 'dart:html'; 4 import 'dart:html';
5 import 'dart:html_common'; 5 import 'dart:html_common';
6 // DO NOT EDIT 6 // DO NOT EDIT
7 // Auto-generated dart:svg library. 7 // Auto-generated dart:svg library.
8 8
9 9
10 10
(...skipping 1239 matching lines...) Expand 10 before | Expand all | Expand 10 after
1250 1250
1251 EventListenerList get submit => this['submit']; 1251 EventListenerList get submit => this['submit'];
1252 1252
1253 EventListenerList get unload => this['unload']; 1253 EventListenerList get unload => this['unload'];
1254 } 1254 }
1255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1255 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1256 // for details. All rights reserved. Use of this source code is governed by a 1256 // for details. All rights reserved. Use of this source code is governed by a
1257 // BSD-style license that can be found in the LICENSE file. 1257 // BSD-style license that can be found in the LICENSE file.
1258 1258
1259 1259
1260 /// @domName ElementTimeControl
1261 abstract class ElementTimeControl {
1262
1263 /// @domName ElementTimeControl.beginElement; @docsEditable true
1264 void beginElement();
1265
1266 /// @domName ElementTimeControl.beginElementAt; @docsEditable true
1267 void beginElementAt(num offset);
1268
1269 /// @domName ElementTimeControl.endElement; @docsEditable true
1270 void endElement();
1271
1272 /// @domName ElementTimeControl.endElementAt; @docsEditable true
1273 void endElementAt(num offset);
1274 }
1275 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1276 // for details. All rights reserved. Use of this source code is governed by a
1277 // BSD-style license that can be found in the LICENSE file.
1278
1279
1260 /// @domName SVGEllipseElement; @docsEditable true 1280 /// @domName SVGEllipseElement; @docsEditable true
1261 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" { 1281 class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl e, ExternalResourcesRequired, LangSpace native "*SVGEllipseElement" {
1262 1282
1263 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1283 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1264 1284
1265 /// @domName SVGEllipseElement.cx; @docsEditable true 1285 /// @domName SVGEllipseElement.cx; @docsEditable true
1266 final AnimatedLength cx; 1286 final AnimatedLength cx;
1267 1287
1268 /// @domName SVGEllipseElement.cy; @docsEditable true 1288 /// @domName SVGEllipseElement.cy; @docsEditable true
1269 final AnimatedLength cy; 1289 final AnimatedLength cy;
(...skipping 5093 matching lines...) Expand 10 before | Expand all | Expand 10 after
6363 } 6383 }
6364 6384
6365 List<ElementInstance> getRange(int start, int rangeLength) => 6385 List<ElementInstance> getRange(int start, int rangeLength) =>
6366 Lists.getRange(this, start, rangeLength, <ElementInstance>[]); 6386 Lists.getRange(this, start, rangeLength, <ElementInstance>[]);
6367 6387
6368 // -- end List<ElementInstance> mixins. 6388 // -- end List<ElementInstance> mixins.
6369 6389
6370 /// @domName SVGElementInstanceList.item; @docsEditable true 6390 /// @domName SVGElementInstanceList.item; @docsEditable true
6371 ElementInstance item(int index) native; 6391 ElementInstance item(int index) native;
6372 } 6392 }
OLDNEW
« no previous file with comments | « sdk/lib/html/templates/html/impl/impl_AudioContext.darttemplate ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698