| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library CssStyleDeclarationTest; | 5 library CssStyleDeclarationTest; |
| 6 import '../../pkg/unittest/lib/unittest.dart'; | 6 import '../../pkg/unittest/lib/unittest.dart'; |
| 7 import '../../pkg/unittest/lib/html_config.dart'; | 7 import '../../pkg/unittest/lib/html_config.dart'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 var element = new DivElement(); | 84 var element = new DivElement(); |
| 85 document.body.children.add(element); | 85 document.body.children.add(element); |
| 86 | 86 |
| 87 // Need to wait one tick after the element has been added to the page. | 87 // Need to wait one tick after the element has been added to the page. |
| 88 new Timer(const Duration(milliseconds: 10), expectAsync0(() { | 88 new Timer(const Duration(milliseconds: 10), expectAsync0(() { |
| 89 element.style.textDecoration = 'underline'; | 89 element.style.textDecoration = 'underline'; |
| 90 var style = element.getComputedStyle(); | 90 var style = element.getComputedStyle(); |
| 91 expect(style.textDecoration, equals('underline')); | 91 expect(style.textDecoration, equals('underline')); |
| 92 })); | 92 })); |
| 93 }); | 93 }); |
| 94 |
| 95 test('Invalid values', () { |
| 96 var element = new DivElement(); |
| 97 // Should not throw an error. |
| 98 element.style.background = 'some_bad_value'; |
| 99 }); |
| 94 } | 100 } |
| OLD | NEW |