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

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

Issue 12605003: Converting Element.client*, offset* and Screen.avail* over to Rects (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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/svg/dart2js/svg_dart2js.dart ('k') | tests/html/element_test.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:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:nativewrappers'; 7 import 'dart:nativewrappers';
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated dart:svg library. 9 // Auto-generated dart:svg library.
10 10
(...skipping 6151 matching lines...) Expand 10 before | Expand all | Expand 10 after
6162 @DomName('SVGStopElement') 6162 @DomName('SVGStopElement')
6163 class StopElement extends StyledElement { 6163 class StopElement extends StyledElement {
6164 StopElement.internal() : super.internal(); 6164 StopElement.internal() : super.internal();
6165 6165
6166 @DomName('SVGStopElement.SVGStopElement') 6166 @DomName('SVGStopElement.SVGStopElement')
6167 @DocsEditable 6167 @DocsEditable
6168 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 6168 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
6169 6169
6170 @DomName('SVGStopElement.offset') 6170 @DomName('SVGStopElement.offset')
6171 @DocsEditable 6171 @DocsEditable
6172 AnimatedNumber get offset native "SVGStopElement_offset_Getter"; 6172 AnimatedNumber get gradientOffset native "SVGStopElement_offset_Getter";
6173 6173
6174 } 6174 }
6175 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 6175 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6176 // for details. All rights reserved. Use of this source code is governed by a 6176 // for details. All rights reserved. Use of this source code is governed by a
6177 // BSD-style license that can be found in the LICENSE file. 6177 // BSD-style license that can be found in the LICENSE file.
6178 6178
6179 // WARNING: Do not edit - generated code. 6179 // WARNING: Do not edit - generated code.
6180 6180
6181 6181
6182 @DocsEditable 6182 @DocsEditable
(...skipping 2099 matching lines...) Expand 10 before | Expand all | Expand 10 after
8282 @DomName('SVGComponentTransferFunctionElement.exponent') 8282 @DomName('SVGComponentTransferFunctionElement.exponent')
8283 @DocsEditable 8283 @DocsEditable
8284 AnimatedNumber get exponent native "SVGComponentTransferFunctionElement_expone nt_Getter"; 8284 AnimatedNumber get exponent native "SVGComponentTransferFunctionElement_expone nt_Getter";
8285 8285
8286 @DomName('SVGComponentTransferFunctionElement.intercept') 8286 @DomName('SVGComponentTransferFunctionElement.intercept')
8287 @DocsEditable 8287 @DocsEditable
8288 AnimatedNumber get intercept native "SVGComponentTransferFunctionElement_inter cept_Getter"; 8288 AnimatedNumber get intercept native "SVGComponentTransferFunctionElement_inter cept_Getter";
8289 8289
8290 @DomName('SVGComponentTransferFunctionElement.offset') 8290 @DomName('SVGComponentTransferFunctionElement.offset')
8291 @DocsEditable 8291 @DocsEditable
8292 AnimatedNumber get offset native "SVGComponentTransferFunctionElement_offset_G etter"; 8292 AnimatedNumber get gradientOffset native "SVGComponentTransferFunctionElement_ offset_Getter";
8293 8293
8294 @DomName('SVGComponentTransferFunctionElement.slope') 8294 @DomName('SVGComponentTransferFunctionElement.slope')
8295 @DocsEditable 8295 @DocsEditable
8296 AnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_Get ter"; 8296 AnimatedNumber get slope native "SVGComponentTransferFunctionElement_slope_Get ter";
8297 8297
8298 @DomName('SVGComponentTransferFunctionElement.tableValues') 8298 @DomName('SVGComponentTransferFunctionElement.tableValues')
8299 @DocsEditable 8299 @DocsEditable
8300 AnimatedNumberList get tableValues native "SVGComponentTransferFunctionElement _tableValues_Getter"; 8300 AnimatedNumberList get tableValues native "SVGComponentTransferFunctionElement _tableValues_Getter";
8301 8301
8302 @DomName('SVGComponentTransferFunctionElement.type') 8302 @DomName('SVGComponentTransferFunctionElement.type')
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
8700 @DocsEditable 8700 @DocsEditable
8701 @DomName('SVGVKernElement') 8701 @DomName('SVGVKernElement')
8702 class _SVGVKernElement extends SvgElement { 8702 class _SVGVKernElement extends SvgElement {
8703 _SVGVKernElement.internal() : super.internal(); 8703 _SVGVKernElement.internal() : super.internal();
8704 8704
8705 @DomName('SVGVKernElement.SVGVKernElement') 8705 @DomName('SVGVKernElement.SVGVKernElement')
8706 @DocsEditable 8706 @DocsEditable
8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8708 8708
8709 } 8709 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/element_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698