blob: 748c1275c767c8187109788b66e460e0a0e8d583 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// 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-abortcontroller
[
Exposed=(Window,Worker)
] interface AbortController {
[CallWith=ScriptState, Measure] constructor();
[SameObject] readonly attribute AbortSignal signal;
[CallWith=ScriptState] void abort(optional any reason);
};