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

Unified Diff: lib/html/doc/interface/SVGFEMorphologyElement.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: lib/html/doc/interface/SVGFEMorphologyElement.dart
diff --git a/lib/html/doc/interface/SVGFEMorphologyElement.dart b/lib/html/doc/interface/SVGFEMorphologyElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e5c845073c9b796b7db7fd8e3ef72d49ef4832c9
--- /dev/null
+++ b/lib/html/doc/interface/SVGFEMorphologyElement.dart
@@ -0,0 +1,30 @@
+// 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.
+
+// WARNING: Do not edit - generated code.
+
+/// @domName SVGFEMorphologyElement
+interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardAttributes {
+
+ static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2;
+
+ static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1;
+
+ static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0;
+
+ /** @domName SVGFEMorphologyElement.in1 */
+ final SVGAnimatedString in1;
+
+ /** @domName SVGFEMorphologyElement.operator */
+ final SVGAnimatedEnumeration operator;
+
+ /** @domName SVGFEMorphologyElement.radiusX */
+ final SVGAnimatedNumber radiusX;
+
+ /** @domName SVGFEMorphologyElement.radiusY */
+ final SVGAnimatedNumber radiusY;
+
+ /** @domName SVGFEMorphologyElement.setRadius */
+ void setRadius(num radiusX, num radiusY);
+}

Powered by Google App Engine
This is Rietveld 408576698