blob: 815af4b6111da7697efbf6a9ff1349213b8fede5 [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://w3c.github.io/ServiceWorker/#foreignfetchevent-interface
[
Constructor(DOMString type, ForeignFetchEventInit eventInitDict),
ConstructorCallWith=ScriptState,
Exposed=ServiceWorker,
OriginTrialEnabled=ForeignFetch
] interface ForeignFetchEvent : ExtendableEvent {
[SameObject] readonly attribute Request request;
readonly attribute USVString origin;
[CallWith=ScriptState, RaisesException] void respondWith(Promise<ForeignFetchResponse> r);
};