Files
sdk/tests/html/window_test.dart
T
2013-07-26 18:09:13 +00:00

14 lines
268 B
Dart

library WindowTest;
import '../../pkg/unittest/lib/unittest.dart';
import '../../pkg/unittest/lib/html_config.dart';
import 'dart:html';
main() {
useHtmlConfiguration();
test('scrollXY', () {
expect(window.scrollX, 0);
expect(window.scrollY, 0);
});
}