| Index: tests/lib_strong/html/css_test.dart
|
| diff --git a/tests/lib_strong/html/css_test.dart b/tests/lib_strong/html/css_test.dart
|
| index bb3b9142b732fb67c9bbeb456be0a03cf145fa16..ca74851d429b7d56bbeb80b13acb36dea0b94fda 100644
|
| --- a/tests/lib_strong/html/css_test.dart
|
| +++ b/tests/lib_strong/html/css_test.dart
|
| @@ -1,4 +1,5 @@
|
| library CssTest;
|
| +
|
| import 'package:unittest/unittest.dart';
|
| import 'package:unittest/html_individual_config.dart';
|
| import 'dart:html';
|
| @@ -14,12 +15,11 @@ main() {
|
|
|
| group('functional', () {
|
| test('DomPoint', () {
|
| - var expectation = Window.supportsPointConversions ?
|
| - returnsNormally : throws;
|
| + var expectation =
|
| + Window.supportsPointConversions ? returnsNormally : throws;
|
| expect(() {
|
| Element element = new Element.tag('div');
|
| - element.attributes['style'] =
|
| - '''
|
| + element.attributes['style'] = '''
|
| position: absolute;
|
| width: 60px;
|
| height: 100px;
|
|
|