| Index: sdk/lib/svg/dart2js/svg_dart2js.dart
|
| diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| index baafa49bdac40f06267489d32dcd75a0a5779602..4de45d39d692d13bca0282a87d17d5fea9fa5c5b 100644
|
| --- a/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| +++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
|
| @@ -1301,32 +1301,6 @@ class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
| -/// @domName SVGException; @docsEditable true
|
| -class Exception native "*SVGException" {
|
| -
|
| - static const int SVG_INVALID_VALUE_ERR = 1;
|
| -
|
| - static const int SVG_MATRIX_NOT_INVERTABLE = 2;
|
| -
|
| - static const int SVG_WRONG_TYPE_ERR = 0;
|
| -
|
| - /// @domName SVGException.code; @docsEditable true
|
| - final int code;
|
| -
|
| - /// @domName SVGException.message; @docsEditable true
|
| - final String message;
|
| -
|
| - /// @domName SVGException.name; @docsEditable true
|
| - final String name;
|
| -
|
| - /// @domName SVGException.toString; @docsEditable true
|
| - String toString() native;
|
| -}
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -
|
| /// @domName SVGExternalResourcesRequired
|
| abstract class ExternalResourcesRequired {
|
|
|
| @@ -5072,6 +5046,32 @@ class SvgElement extends Element native "*SVGElement" {
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
| +/// @domName SVGException; @docsEditable true
|
| +class SvgException native "*SVGException" {
|
| +
|
| + static const int SVG_INVALID_VALUE_ERR = 1;
|
| +
|
| + static const int SVG_MATRIX_NOT_INVERTABLE = 2;
|
| +
|
| + static const int SVG_WRONG_TYPE_ERR = 0;
|
| +
|
| + /// @domName SVGException.code; @docsEditable true
|
| + final int code;
|
| +
|
| + /// @domName SVGException.message; @docsEditable true
|
| + final String message;
|
| +
|
| + /// @domName SVGException.name; @docsEditable true
|
| + final String name;
|
| +
|
| + /// @domName SVGException.toString; @docsEditable true
|
| + String toString() native;
|
| +}
|
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +
|
| class SvgSvgElement extends SvgElement implements FitToViewBox, Tests, Stylable, Locatable, ExternalResourcesRequired, ZoomAndPan, LangSpace native "*SVGSVGElement" {
|
| factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement();
|
|
|
|
|