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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 11312203: "Reverting 14829-14832" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/uri/uri.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 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
11 11
12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 12 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
13 // for details. All rights reserved. Use of this source code is governed by a 13 // for details. All rights reserved. Use of this source code is governed by a
14 // BSD-style license that can be found in the LICENSE file. 14 // BSD-style license that can be found in the LICENSE file.
15 15
16 16
17 final _START_TAG_REGEXP = new RegExp('<(\\w+)'); 17 final _START_TAG_REGEXP = const RegExp('<(\\w+)');
18 18
19 class _SVGElementFactoryProvider { 19 class _SVGElementFactoryProvider {
20 static SVGElement createSVGElement_tag(String tag) { 20 static SVGElement createSVGElement_tag(String tag) {
21 final Element temp = 21 final Element temp =
22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag); 22 document.$dom_createElementNS("http://www.w3.org/2000/svg", tag);
23 return temp; 23 return temp;
24 } 24 }
25 25
26 static SVGElement createSVGElement_svg(String svg) { 26 static SVGElement createSVGElement_svg(String svg) {
27 Element parentTag; 27 Element parentTag;
(...skipping 7926 matching lines...) Expand 10 before | Expand all | Expand 10 after
7954 List<SVGElementInstance> getRange(int start, int rangeLength) => 7954 List<SVGElementInstance> getRange(int start, int rangeLength) =>
7955 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]); 7955 _Lists.getRange(this, start, rangeLength, <SVGElementInstance>[]);
7956 7956
7957 // -- end List<SVGElementInstance> mixins. 7957 // -- end List<SVGElementInstance> mixins.
7958 7958
7959 7959
7960 /** @domName SVGElementInstanceList.item */ 7960 /** @domName SVGElementInstanceList.item */
7961 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac k"; 7961 SVGElementInstance item(int index) native "SVGElementInstanceList_item_Callbac k";
7962 7962
7963 } 7963 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/uri/uri.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698