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

Unified Diff: pkg/unittest/html_enhanced_config.dart

Issue 10928057: Fix issue 4960 (getter syntax in html_enhanced_config). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/html_enhanced_config.dart
===================================================================
--- pkg/unittest/html_enhanced_config.dart (revision 11963)
+++ pkg/unittest/html_enhanced_config.dart (working copy)
@@ -235,9 +235,9 @@
}
- static bool get _isIE() => document.window.navigator.userAgent.contains('MSIE');
+ static bool get _isIE => document.window.navigator.userAgent.contains('MSIE');
Siggi Cherem (dart-lang) 2012/09/07 17:15:43 while we are here, can you fix this to be 80 cols?
- String get _htmlTestCSS() =>
+ String get _htmlTestCSS =>
'''
body{
font-size: 14px;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698