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

Unified Diff: client/html/src/CSSStyleDeclarationWrappingImplementation.dart

Issue 9243023: CSSStyleDeclaration#cssText should take a string. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: htmlimpl Created 8 years, 11 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
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/src/CSSStyleDeclarationWrappingImplementation.dart
diff --git a/client/html/src/CSSStyleDeclarationWrappingImplementation.dart b/client/html/src/CSSStyleDeclarationWrappingImplementation.dart
index c274523b74a54f8644b957f40cf49872032b3574..9659ab65bbbd8e9928ce021f3c74d7ed10beae12 100644
--- a/client/html/src/CSSStyleDeclarationWrappingImplementation.dart
+++ b/client/html/src/CSSStyleDeclarationWrappingImplementation.dart
@@ -39,7 +39,7 @@ class CSSStyleDeclarationWrappingImplementation extends DOMWrapperBase implement
String get cssText() { return _ptr.cssText; }
- void set cssText(var value) { _ptr.cssText = value; }
+ void set cssText(String value) { _ptr.cssText = value; }
int get length() { return _ptr.length; }
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698