blob: 41836a8ade8077ee4c8b4f38b3af107fe05519e1 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://dom.spec.whatwg.org/#interface-AbortSignal
[
Exposed=(Window,Worker)
] interface AbortSignal : EventTarget {
readonly attribute boolean aborted;
attribute EventHandler onabort;
};