Index: LayoutTests/dart/dom/XHR.dart |
diff --git a/LayoutTests/dart/dom/XHR.dart b/LayoutTests/dart/dom/XHR.dart |
deleted file mode 100644 |
index 6290ee2ccbdd588ff3ea4ad93089b8d46cbc6ccb..0000000000000000000000000000000000000000 |
--- a/LayoutTests/dart/dom/XHR.dart |
+++ /dev/null |
@@ -1,18 +0,0 @@ |
-#import('../../../../../dart/client/testing/unittest/unittest.dart'); |
-#import('dart:dom'); |
- |
-main() { |
- forLayoutTests(); |
- asyncTest('XHR', 1, () { |
- XMLHttpRequest xhr = new XMLHttpRequest(); |
- xhr.open('GET', 'XHR.html', true); |
- xhr.addEventListener('readystatechange', (event) { |
- if (xhr.readyState == 4) |
- if (xhr.status == 200 || xhr.status == 0) { |
- Expect.notEquals(-1, xhr.responseText.indexOf('XHR.dart', 0)); |
- callbackDone(); |
- } |
- }, true); |
- xhr.send(); |
- }); |
-} |