| OLD | NEW |
| 1 library BElementTest; | 1 library WindowTest; |
| 2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
| 3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_config.dart'; |
| 4 import 'dart:html'; | 4 import 'dart:html'; |
| 5 | 5 |
| 6 main() { | 6 main() { |
| 7 useHtmlConfiguration(); | 7 useHtmlConfiguration(); |
| 8 | 8 |
| 9 test('create b', () { | 9 test('scrollXY', () { |
| 10 new Element.tag('b'); | 10 expect(window.scrollX, 0); |
| 11 expect(window.scrollY, 0); |
| 11 }); | 12 }); |
| 12 } | 13 } |
| 13 | |
| OLD | NEW |