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

Unified Diff: client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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: client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart b/client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart
index 1d2bfa67aac1a7b25c9c13f4546b172e53ca6f1d..7f4f98c3df639861869037518c7bf871ad88330a 100644
--- a/client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart
+++ b/client/html/generated/src/wrapping/_CSSMatrixWrappingImplementation.dart
@@ -6,6 +6,14 @@
class CSSMatrixWrappingImplementation extends DOMWrapperBase implements CSSMatrix {
CSSMatrixWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
+ factory CSSMatrixWrappingImplementation([String cssValue = null]) {
+
+ if (cssValue === null) {
+ return LevelDom.wrapCSSMatrix(new dom.WebKitCSSMatrix());
+ } else {
+ return LevelDom.wrapCSSMatrix(new dom.WebKitCSSMatrix(cssValue));
+ }
+ }
num get a() { return _ptr.a; }

Powered by Google App Engine
This is Rietveld 408576698