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

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

Issue 16234006: Chrome roll 202464->204370. (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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:_collection-dev'; 5 import 'dart:_collection-dev';
6 import 'dart:html'; 6 import 'dart:html';
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 8 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
9 import 'dart:_foreign_helper' show JS; 9 import 'dart:_foreign_helper' show JS;
10 import 'dart:_interceptors' show Interceptor; 10 import 'dart:_interceptors' show Interceptor;
(...skipping 1225 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 1236
1237 @DomName('SVGElementInstance.onunload') 1237 @DomName('SVGElementInstance.onunload')
1238 @DocsEditable 1238 @DocsEditable
1239 Stream<Event> get onUnload => unloadEvent.forTarget(this); 1239 Stream<Event> get onUnload => unloadEvent.forTarget(this);
1240 } 1240 }
1241 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1241 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1242 // for details. All rights reserved. Use of this source code is governed by a 1242 // for details. All rights reserved. Use of this source code is governed by a
1243 // BSD-style license that can be found in the LICENSE file. 1243 // BSD-style license that can be found in the LICENSE file.
1244 1244
1245 1245
1246 @DomName('ElementTimeControl')
1247 @Unstable
1248 abstract class ElementTimeControl {
1249
1250 void beginElement();
1251
1252 void beginElementAt(num offset);
1253
1254 void endElement();
1255
1256 void endElementAt(num offset);
1257 }
1258 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
1259 // for details. All rights reserved. Use of this source code is governed by a
1260 // BSD-style license that can be found in the LICENSE file.
1261
1262
1263 @DocsEditable 1246 @DocsEditable
1264 @DomName('SVGEllipseElement') 1247 @DomName('SVGEllipseElement')
1265 @Unstable 1248 @Unstable
1266 class EllipseElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace native "SVGEllipseElement" { 1249 class EllipseElement extends StyledElement implements Transformable, Tests, Exte rnalResourcesRequired, LangSpace native "SVGEllipseElement" {
1267 1250
1268 @DomName('SVGEllipseElement.SVGEllipseElement') 1251 @DomName('SVGEllipseElement.SVGEllipseElement')
1269 @DocsEditable 1252 @DocsEditable
1270 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse"); 1253 factory EllipseElement() => _SvgElementFactoryProvider.createSvgElement_tag("e llipse");
1271 1254
1272 @DomName('SVGEllipseElement.cx') 1255 @DomName('SVGEllipseElement.cx')
(...skipping 5843 matching lines...) Expand 10 before | Expand all | Expand 10 after
7116 7099
7117 @DocsEditable 7100 @DocsEditable
7118 @DomName('SVGVKernElement') 7101 @DomName('SVGVKernElement')
7119 @Unstable 7102 @Unstable
7120 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" { 7103 abstract class _SVGVKernElement extends SvgElement native "SVGVKernElement" {
7121 7104
7122 @DomName('SVGVKernElement.SVGVKernElement') 7105 @DomName('SVGVKernElement.SVGVKernElement')
7123 @DocsEditable 7106 @DocsEditable
7124 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7107 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7125 } 7108 }
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698