blob: 25c45816b3a35491ad8c4809bf08781080f58eab [file] [log] [blame]
// Copyright 2021 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.
[
Exposed=Window,
RuntimeEnabled=ModalCloseWatcher
] interface ModalCloseWatcher {
[CallWith=ScriptState, RaisesException] constructor();
void signalClosed();
void destroy();
attribute EventHandler onbeforeclose;
attribute EventHandler onclose;
};