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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 311473003: Add in semicolons in CSSStyleDeclaration change! (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index cf440164083ae50211e596e9313bfe9532f41d28..f3f1b8dea834495f266d111f4ea31e06798b221b 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -4028,14 +4028,14 @@ abstract class CssStyleDeclarationBase {
/** Gets the value of "flex" */
String get flex {
- String prefix = Device.cssPrefix
+ String prefix = Device.cssPrefix;
if (Device.isFirefox) prefix = '';
return getPropertyValue('${prefix}flex');
}
/** Sets the value of "flex" */
void set flex(String value) {
- String prefix = Device.cssPrefix
+ String prefix = Device.cssPrefix;
if (Device.isFirefox) prefix = '';
setProperty('${prefix}flex', value, '');
}
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698