Chromium Code Reviews| 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; |