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

Unified Diff: client/html/release/htmlimpl.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:
Download patch
« no previous file with comments | « no previous file | client/html/src/CSSStyleDeclarationWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/htmlimpl.dart
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
index f0b39463590ab8fa2a51cb51c903a0298973cb73..63a760eef505febf471b83a3b08f242cdc94af76 100644
--- a/client/html/release/htmlimpl.dart
+++ b/client/html/release/htmlimpl.dart
@@ -18736,7 +18736,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 | « no previous file | client/html/src/CSSStyleDeclarationWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698