2015-08-28 22:21:08 +03:00
|
|
|
/* -*- 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://html.spec.whatwg.org/multipage/interaction.html#the-datatransferitem-interface
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface DataTransferItem {
|
|
|
|
readonly attribute DOMString kind;
|
|
|
|
readonly attribute DOMString type;
|
2016-09-29 09:55:20 +03:00
|
|
|
[Throws, NeedsSubjectPrincipal]
|
2015-08-28 22:21:08 +03:00
|
|
|
void getAsString(FunctionStringCallback? _callback);
|
2016-09-29 09:55:20 +03:00
|
|
|
[Throws, NeedsSubjectPrincipal]
|
2015-08-28 22:21:08 +03:00
|
|
|
File? getAsFile();
|
|
|
|
};
|
|
|
|
|
|
|
|
callback FunctionStringCallback = void (DOMString data);
|
2016-07-29 14:42:33 +03:00
|
|
|
|
|
|
|
partial interface DataTransferItem {
|
2016-09-29 09:55:20 +03:00
|
|
|
[Pref="dom.webkitBlink.filesystem.enabled", BinaryName="getAsEntry", Throws,
|
|
|
|
NeedsSubjectPrincipal]
|
2016-08-18 10:17:25 +03:00
|
|
|
FileSystemEntry? webkitGetAsEntry();
|
2016-07-29 14:42:33 +03:00
|
|
|
};
|