mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
8131e31c43
--HG-- rename : dom/filehandle/FileHandle.cpp => dom/filehandle/MutableFile.cpp rename : dom/filehandle/FileHandle.h => dom/filehandle/MutableFile.h rename : dom/filehandle/test/test_lockedfile_lifetimes.html => dom/filehandle/test/test_filehandle_lifetimes.html rename : dom/filehandle/test/test_lockedfile_lifetimes_nested.html => dom/filehandle/test/test_filehandle_lifetimes_nested.html rename : dom/filehandle/test/test_lockedfile_ordering.html => dom/filehandle/test/test_filehandle_ordering.html rename : dom/filehandle/test/test_overlapping_lockedfiles.html => dom/filehandle/test/test_overlapping_filehandles.html rename : dom/filehandle/test/test_readonly_lockedfiles.html => dom/filehandle/test/test_readonly_filehandles.html rename : dom/indexedDB/IDBFileHandle.cpp => dom/indexedDB/IDBMutableFile.cpp rename : dom/indexedDB/IDBFileHandle.h => dom/indexedDB/IDBMutableFile.h rename : dom/webidl/IDBFileHandle.webidl => dom/webidl/IDBMutableFile.webidl rename : dom/webidl/FileHandle.webidl => dom/webidl/MutableFile.webidl
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* https://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBObjectStoreParameters
|
|
*
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
* liability, trademark and document use rules apply.
|
|
*/
|
|
|
|
interface IDBDatabase : EventTarget {
|
|
readonly attribute DOMString name;
|
|
readonly attribute unsigned long long version;
|
|
|
|
[Throws]
|
|
readonly attribute DOMStringList objectStoreNames;
|
|
|
|
[Throws]
|
|
IDBObjectStore createObjectStore (DOMString name, optional IDBObjectStoreParameters optionalParameters);
|
|
|
|
[Throws]
|
|
void deleteObjectStore (DOMString name);
|
|
|
|
// This should be:
|
|
// IDBTransaction transaction ((DOMString or sequence<DOMString>) storeNames, optional IDBTransactionMode mode = "readonly");
|
|
// but unions are not currently supported.
|
|
|
|
[Throws]
|
|
IDBTransaction transaction (DOMString storeName, optional IDBTransactionMode mode = "readonly");
|
|
|
|
[Throws]
|
|
IDBTransaction transaction (sequence<DOMString> storeNames, optional IDBTransactionMode mode = "readonly");
|
|
|
|
void close ();
|
|
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler onerror;
|
|
attribute EventHandler onversionchange;
|
|
};
|
|
|
|
partial interface IDBDatabase {
|
|
[Pref="dom.indexedDB.experimental"]
|
|
readonly attribute StorageType storage;
|
|
|
|
[Throws]
|
|
IDBRequest createMutableFile (DOMString name, optional DOMString type);
|
|
|
|
// this is deprecated due to renaming in the spec
|
|
[Throws]
|
|
IDBRequest mozCreateFileHandle (DOMString name, optional DOMString type); // now createMutableFile
|
|
};
|