blob: 05300919c2df391ff9ab2ecb12cef0e629546ad6 [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();
}