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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.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/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:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
8 import 'dart:_foreign_helper' show JS; 8 import 'dart:_foreign_helper' show JS;
9 // DO NOT EDIT - unless you are editing documentation as per: 9 // DO NOT EDIT - unless you are editing documentation as per:
10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
(...skipping 5438 matching lines...) Expand 10 before | Expand all | Expand 10 after
5449 5449
5450 5450
5451 @DocsEditable 5451 @DocsEditable
5452 @DomName('SVGStopElement') 5452 @DomName('SVGStopElement')
5453 class StopElement extends StyledElement native "*SVGStopElement" { 5453 class StopElement extends StyledElement native "*SVGStopElement" {
5454 5454
5455 @DomName('SVGStopElement.SVGStopElement') 5455 @DomName('SVGStopElement.SVGStopElement')
5456 @DocsEditable 5456 @DocsEditable
5457 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop "); 5457 factory StopElement() => _SvgElementFactoryProvider.createSvgElement_tag("stop ");
5458 5458
5459 @JSName('offset')
5459 @DomName('SVGStopElement.offset') 5460 @DomName('SVGStopElement.offset')
5460 @DocsEditable 5461 @DocsEditable
5461 final AnimatedNumber offset; 5462 final AnimatedNumber gradientOffset;
5462 } 5463 }
5463 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5464 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
5464 // for details. All rights reserved. Use of this source code is governed by a 5465 // for details. All rights reserved. Use of this source code is governed by a
5465 // BSD-style license that can be found in the LICENSE file. 5466 // BSD-style license that can be found in the LICENSE file.
5466 5467
5467 5468
5468 @DocsEditable 5469 @DocsEditable
5469 @DomName('SVGStringList') 5470 @DomName('SVGStringList')
5470 class StringList implements JavaScriptIndexingBehavior, List<String> native "*SV GStringList" { 5471 class StringList implements JavaScriptIndexingBehavior, List<String> native "*SV GStringList" {
5471 5472
(...skipping 1934 matching lines...) Expand 10 before | Expand all | Expand 10 after
7406 final AnimatedNumber amplitude; 7407 final AnimatedNumber amplitude;
7407 7408
7408 @DomName('SVGComponentTransferFunctionElement.exponent') 7409 @DomName('SVGComponentTransferFunctionElement.exponent')
7409 @DocsEditable 7410 @DocsEditable
7410 final AnimatedNumber exponent; 7411 final AnimatedNumber exponent;
7411 7412
7412 @DomName('SVGComponentTransferFunctionElement.intercept') 7413 @DomName('SVGComponentTransferFunctionElement.intercept')
7413 @DocsEditable 7414 @DocsEditable
7414 final AnimatedNumber intercept; 7415 final AnimatedNumber intercept;
7415 7416
7417 @JSName('offset')
7416 @DomName('SVGComponentTransferFunctionElement.offset') 7418 @DomName('SVGComponentTransferFunctionElement.offset')
7417 @DocsEditable 7419 @DocsEditable
7418 final AnimatedNumber offset; 7420 final AnimatedNumber gradientOffset;
7419 7421
7420 @DomName('SVGComponentTransferFunctionElement.slope') 7422 @DomName('SVGComponentTransferFunctionElement.slope')
7421 @DocsEditable 7423 @DocsEditable
7422 final AnimatedNumber slope; 7424 final AnimatedNumber slope;
7423 7425
7424 @DomName('SVGComponentTransferFunctionElement.tableValues') 7426 @DomName('SVGComponentTransferFunctionElement.tableValues')
7425 @DocsEditable 7427 @DocsEditable
7426 final AnimatedNumberList tableValues; 7428 final AnimatedNumberList tableValues;
7427 7429
7428 @DomName('SVGComponentTransferFunctionElement.type') 7430 @DomName('SVGComponentTransferFunctionElement.type')
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
7757 7759
7758 7760
7759 @DocsEditable 7761 @DocsEditable
7760 @DomName('SVGVKernElement') 7762 @DomName('SVGVKernElement')
7761 class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { 7763 class _SVGVKernElement extends SvgElement native "*SVGVKernElement" {
7762 7764
7763 @DomName('SVGVKernElement.SVGVKernElement') 7765 @DomName('SVGVKernElement.SVGVKernElement')
7764 @DocsEditable 7766 @DocsEditable
7765 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7767 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7766 } 7768 }
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