| Index: tests/dom/window_mangling_test.dart
|
| diff --git a/tests/dom/window_mangling_test.dart b/tests/dom/window_mangling_test.dart
|
| deleted file mode 100644
|
| index 93fc6c8bfb92adcac7ecc30a1f9fd6b1d100b4b6..0000000000000000000000000000000000000000
|
| --- a/tests/dom/window_mangling_test.dart
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -#library('WindowManglingTest');
|
| -#import('../../lib/unittest/unittest.dart');
|
| -#import('../../lib/unittest/html_config.dart');
|
| -#import('dart:html', prefix: 'dom');
|
| -
|
| -// Defined in dom.Window.
|
| -get navigator() => "Dummy";
|
| -
|
| -$eq(x, y) => false;
|
| -$eq$(x, y) => false;
|
| -
|
| -main() {
|
| - useHtmlConfiguration();
|
| - var win = dom.window;
|
| -
|
| - test('windowMethod', () {
|
| - final message = navigator;
|
| - final x = win.navigator;
|
| - Expect.notEquals(message, x);
|
| - });
|
| -
|
| - test('windowEquals', () {
|
| - Expect.isFalse($eq(win, win));
|
| - Expect.isTrue(win == win);
|
| - });
|
| -
|
| - test('windowEquals', () {
|
| - Expect.isFalse($eq$(win, win));
|
| - Expect.isTrue(win == win);
|
| - });
|
| -}
|
|
|