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