blob: 38b0f83daed5e5b5f634f1850cea0976da1a35dd [file] [log] [blame]
/*
* Copyright (c) 2014, 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.
*/
/**
* @assertion final String responseText
* The response in String form or empty String on failure.
* @description Checks that the property is not empty in case of success.
*/
import "dart:html";
import "dart:async";
import "../../../UtilsHtml/expect.dart";
main() {
asyncStart();
Future<HttpRequest> f = HttpRequest.request("test.html");
f.then((HttpRequest r) {
Expect.isTrue(r.responseText.length > 0);
asyncEnd();
}, onError: (Object error) {
Expect.fail("request.onLoad.listen:onError($error)");
});
}