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

Unified Diff: LayoutTests/dart/html/XHR.dart

Issue 9188009: Things to unfork. (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/dart/fib-script-expected.txt ('k') | LayoutTests/dart/html/XHR.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
- });
-}
« no previous file with comments | « LayoutTests/dart/fib-script-expected.txt ('k') | LayoutTests/dart/html/XHR.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698