| OLD | NEW | 
|---|
|  | (Empty) | 
| 1 // Copyright (c) 2011, the Dart project authors.  Please see the AUTHORS file |  | 
| 2 // for details. All rights reserved. Use of this source code is governed by a |  | 
| 3 // BSD-style license that can be found in the LICENSE file. |  | 
| 4 |  | 
| 5 // WARNING: Do not edit - generated code. |  | 
| 6 |  | 
| 7 class _SVGStopElementWrappingImplementation extends _SVGElementWrappingImplement
    ation implements SVGStopElement { |  | 
| 8   _SVGStopElementWrappingImplementation() : super() {} |  | 
| 9 |  | 
| 10   static create__SVGStopElementWrappingImplementation() native { |  | 
| 11     return new _SVGStopElementWrappingImplementation(); |  | 
| 12   } |  | 
| 13 |  | 
| 14   SVGAnimatedNumber get offset() { return _get_offset(this); } |  | 
| 15   static SVGAnimatedNumber _get_offset(var _this) native; |  | 
| 16 |  | 
| 17   // From SVGStylable |  | 
| 18 |  | 
| 19   SVGAnimatedString get className() { return _get_className(this); } |  | 
| 20   static SVGAnimatedString _get_className(var _this) native; |  | 
| 21 |  | 
| 22   CSSStyleDeclaration get style() { return _get_style_SVGStopElement(this); } |  | 
| 23   static CSSStyleDeclaration _get_style_SVGStopElement(var _this) native; |  | 
| 24 |  | 
| 25   CSSValue getPresentationAttribute(String name) { |  | 
| 26     return _getPresentationAttribute(this, name); |  | 
| 27   } |  | 
| 28   static CSSValue _getPresentationAttribute(receiver, name) native; |  | 
| 29 |  | 
| 30   String get typeName() { return "SVGStopElement"; } |  | 
| 31 } |  | 
| OLD | NEW | 
|---|