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

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

Issue 8341027: Fix client/html_tests so they use the new framework. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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: client/html/src/CSSStyleDeclaration.dart
diff --git a/client/html/src/CSSStyleDeclaration.dart b/client/html/src/CSSStyleDeclaration.dart
index a997dc1b397f28d82ce8dee057dec19767b197a0..28ae18f72ab3d2124981e5a6c44702e184847f39 100644
--- a/client/html/src/CSSStyleDeclaration.dart
+++ b/client/html/src/CSSStyleDeclaration.dart
@@ -10,7 +10,11 @@
// TODO(jacobr): add versions that take numeric values in px, miliseconds, etc.
-interface CSSStyleDeclaration {
+interface CSSStyleDeclaration factory CSSStyleDeclarationWrappingImplementation {
+
+ CSSStyleDeclaration();
+
+ CSSStyleDeclaration.css(String css);
String get cssText();

Powered by Google App Engine
This is Rietveld 408576698