Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: tests/html/window_test.dart

Issue 23686021: Add property base to the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fix Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
1 library WindowTest; 5 library WindowTest;
2 import '../../pkg/unittest/lib/unittest.dart'; 6 import '../../pkg/unittest/lib/unittest.dart';
3 import '../../pkg/unittest/lib/html_config.dart'; 7 import '../../pkg/unittest/lib/html_config.dart';
4 import 'dart:html'; 8 import 'dart:html';
5 9
6 main() { 10 main() {
7 useHtmlConfiguration(); 11 useHtmlConfiguration();
8 12
9 test('scrollXY', () { 13 test('scrollXY', () {
10 expect(window.scrollX, 0); 14 expect(window.scrollX, 0);
11 expect(window.scrollY, 0); 15 expect(window.scrollY, 0);
12 }); 16 });
13 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698