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