Bug 1777562 [wpt PR 34663] - [FedCM] Rename FederatedCredential to IdentityCredential...
[gecko.git] / dom / webidl / IDBMutableFile.webidl
blob27330da5d1b1d084c3763ebd02deffcb44042fc9
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 [Exposed=Window, Pref="dom.fileHandle.enabled"]
7 interface IDBMutableFile : EventTarget {
8   readonly attribute DOMString name;
9   readonly attribute DOMString type;
11   readonly attribute IDBDatabase database;
13   [Throws, Deprecated="IDBMutableFileOpen"]
14   IDBFileHandle open(optional FileMode mode = "readonly");
16   attribute EventHandler onabort;
17   attribute EventHandler onerror;