blob: 84afef572addf990f9b3159ef0cf038201ae55f6 [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-abortcontroller
[
Constructor,
ConstructorCallWith=ExecutionContext,
Exposed=(Window,Worker),
Measure
] interface AbortController {
[SameObject] readonly attribute AbortSignal signal;
void abort();
};