Chromium Code Reviews

Unified Diff: client/html/generated/html/dartium/SVGStylable.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: client/html/generated/html/dartium/SVGStylable.dart
diff --git a/client/html/generated/html/dartium/SVGStylable.dart b/client/html/generated/html/dartium/SVGStylable.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c55a05c415d89cb6b2435e9054789fc096a09cee
--- /dev/null
+++ b/client/html/generated/html/dartium/SVGStylable.dart
@@ -0,0 +1,12 @@
+
+class _SVGStylableImpl extends _DOMTypeBase implements SVGStylable {
+ _SVGStylableImpl._wrap(ptr) : super._wrap(ptr);
+
+ SVGAnimatedString get className() => _wrap(_ptr.className);
+
+ CSSStyleDeclaration get style() => _wrap(_ptr.style);
+
+ CSSValue getPresentationAttribute(String name) {
+ return _wrap(_ptr.getPresentationAttribute(_unwrap(name)));
+ }
+}

Powered by Google App Engine