mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 00:25:27 +00:00
8f28eb1deb
--HG-- rename : dom/filehandle/File.cpp => dom/indexedDB/FileSnapshot.cpp rename : dom/filehandle/File.h => dom/indexedDB/FileSnapshot.h rename : dom/filehandle/test/dummy_worker.js => dom/indexedDB/test/dummy_worker.js rename : dom/filehandle/test/test_append_read_data.html => dom/indexedDB/test/test_filehandle_append_read_data.html rename : dom/filehandle/test/test_compat.html => dom/indexedDB/test/test_filehandle_compat.html rename : dom/filehandle/test/test_getFile.html => dom/indexedDB/test/test_filehandle_getFile.html rename : dom/filehandle/test/test_filehandle_lifetimes.html => dom/indexedDB/test/test_filehandle_lifetimes.html rename : dom/filehandle/test/test_filehandle_lifetimes_nested.html => dom/indexedDB/test/test_filehandle_lifetimes_nested.html rename : dom/filehandle/test/test_location.html => dom/indexedDB/test/test_filehandle_location.html rename : dom/filehandle/test/test_filehandle_ordering.html => dom/indexedDB/test/test_filehandle_ordering.html rename : dom/filehandle/test/test_overlapping_filehandles.html => dom/indexedDB/test/test_filehandle_overlapping.html rename : dom/filehandle/test/test_progress_events.html => dom/indexedDB/test/test_filehandle_progress_events.html rename : dom/filehandle/test/test_readonly_filehandles.html => dom/indexedDB/test/test_filehandle_readonly_exceptions.html rename : dom/filehandle/test/test_request_readyState.html => dom/indexedDB/test/test_filehandle_request_readyState.html rename : dom/filehandle/test/test_stream_tracking.html => dom/indexedDB/test/test_filehandle_stream_tracking.html rename : dom/filehandle/test/test_success_events_after_abort.html => dom/indexedDB/test/test_filehandle_success_events_after_abort.html rename : dom/filehandle/test/test_truncate.html => dom/indexedDB/test/test_filehandle_truncate.html rename : dom/filehandle/test/test_workers.html => dom/indexedDB/test/test_filehandle_workers.html rename : dom/filehandle/test/test_write_read_data.html => dom/indexedDB/test/test_filehandle_write_read_data.html rename : dom/filehandle/test/test_getFileId.html => dom/indexedDB/test/test_getFileId.html rename : dom/webidl/FileHandle.webidl => dom/webidl/IDBFileHandle.webidl rename : dom/webidl/FileRequest.webidl => dom/webidl/IDBFileRequest.webidl
51 lines
1.4 KiB
Plaintext
51 lines
1.4 KiB
Plaintext
/* 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 obtaone at http://mozilla.org/MPL/2.0/. */
|
|
|
|
dictionary IDBFileMetadataParameters
|
|
{
|
|
boolean size = true;
|
|
boolean lastModified = true;
|
|
};
|
|
|
|
interface IDBFileHandle : EventTarget
|
|
{
|
|
readonly attribute IDBMutableFile? mutableFile;
|
|
// this is deprecated due to renaming in the spec
|
|
readonly attribute IDBMutableFile? fileHandle; // now mutableFile
|
|
readonly attribute FileMode mode;
|
|
readonly attribute boolean active;
|
|
attribute unsigned long long? location;
|
|
|
|
[Throws]
|
|
IDBFileRequest? getMetadata(optional IDBFileMetadataParameters parameters);
|
|
[Throws]
|
|
IDBFileRequest? readAsArrayBuffer(unsigned long long size);
|
|
[Throws]
|
|
IDBFileRequest? readAsText(unsigned long long size,
|
|
optional DOMString? encoding = null);
|
|
|
|
[Throws]
|
|
IDBFileRequest? write(ArrayBuffer value);
|
|
[Throws]
|
|
IDBFileRequest? write(Blob value);
|
|
[Throws]
|
|
IDBFileRequest? write(DOMString value);
|
|
[Throws]
|
|
IDBFileRequest? append(ArrayBuffer value);
|
|
[Throws]
|
|
IDBFileRequest? append(Blob value);
|
|
[Throws]
|
|
IDBFileRequest? append(DOMString value);
|
|
[Throws]
|
|
IDBFileRequest? truncate(optional unsigned long long size);
|
|
[Throws]
|
|
IDBFileRequest? flush();
|
|
[Throws]
|
|
void abort();
|
|
|
|
attribute EventHandler oncomplete;
|
|
attribute EventHandler onabort;
|
|
attribute EventHandler onerror;
|
|
};
|