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: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
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, 6 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
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 1b7237a1ac308cd25167e5e73090c88876090c18..47ee9c0d59c6aa374bf5053ee6807dc493c1833f 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -4639,14 +4639,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 | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698