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

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

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.dartdoc
diff --git a/lib/html/doc/interface/SVGFEMorphologyElement.dartdoc b/lib/html/doc/interface/SVGFEMorphologyElement.dartdoc
new file mode 100644
index 0000000000000000000000000000000000000000..4763442e95fc10bac314739ba4044799a812f818
--- /dev/null
+++ b/lib/html/doc/interface/SVGFEMorphologyElement.dartdoc
@@ -0,0 +1,32 @@
+// 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:
+// This file contains documentation that is merged into the real source.
+// Do not make code changes here.
+
+/// @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);
+}
« no previous file with comments | « lib/html/doc/interface/SVGFEMergeNodeElement.dartdoc ('k') | lib/html/doc/interface/SVGFEOffsetElement.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698