c75ffac982
BUG= R=blois@google.com Review URL: https://codereview.chromium.org//20385002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@25529 260f80e4-7a28-3924-810f-c04153c831b5
14 lines
268 B
Dart
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);
|
|
});
|
|
}
|