blob: e803789500ab24132c97f04eb7737548dfb234f7 [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 Stream<ProgressEvent> get onAbort
/// Stream of abort events handled by this HttpRequestEventTarget.
/// @description Checks the state an event is fired when the request is aborted.
import "dart:html";
import "../../../Utils/expect.dart";
import "../testcommon.dart";
main() {
var request = new HttpRequest();
var port = crossOriginPort;
var host = '${window.location.protocol}//${window.location.hostname}:$port';
var url = '$host/root_dart/tests/co19/src/LibTest/html/xhr_cross_origin_data.txt';
request.open('GET', url);
request.onAbort.listen((event) {
asyncEnd();
});
asyncStart();
request.send();
request.abort();
}