blob: 7e4f02f527d1d66bf25c630879e15bb168074528 [file] [log] [blame]
// Copyright 2016 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/#extendablemessageevent-interface
[
Exposed=ServiceWorker
] interface ExtendableMessageEvent : ExtendableEvent {
// TODO(bashi): Stop using custom constructor once we solve reference
// circulation between Blink and V8. https://crbug.com/501866
// Constructor should be:
// constructor(DOMString type, optional ExtendableMessageEventInit eventInitDict = {}),
[Custom] constructor();
[Custom=Getter] readonly attribute any data;
readonly attribute DOMString origin;
readonly attribute DOMString lastEventId;
[SameObject] readonly attribute (Client or ServiceWorker or MessagePort)? source;
readonly attribute FrozenArray<MessagePort> ports;
};