blob: 8172ac721d4d571e6e640bb2f4daa3dcadaa380c [file] [log] [blame]
// Copyright 2014 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://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#foreign-fetch-event-section
[
Constructor(DOMString type, ForeignFetchEventInit eventInitDict),
ConstructorCallWith=ScriptState,
Exposed=ServiceWorker,
RuntimeEnabled=ForeignFetch,
] interface ForeignFetchEvent : ExtendableEvent {
[SameObject] readonly attribute Request request;
readonly attribute USVString origin;
[CallWith=ScriptState, RaisesException] void respondWith(Promise<ForeignFetchResponse> r);
};