mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-28 20:43:23 +03:00
b8afa0abde
I think these might all be from before WebIDL mixins existed. Either way, multiple inheritance of interfaces that don't have exposed interface objects is equivalent to mixins.
151 lines
3.9 KiB
Plaintext
Vendored
151 lines
3.9 KiB
Plaintext
Vendored
/* -*- 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/.
|
|
*/
|
|
|
|
callback BrowserElementNextPaintEventCallback = void ();
|
|
|
|
enum BrowserFindCaseSensitivity { "case-sensitive", "case-insensitive" };
|
|
enum BrowserFindDirection { "forward", "backward" };
|
|
|
|
dictionary BrowserElementDownloadOptions {
|
|
DOMString? filename;
|
|
DOMString? referrer;
|
|
};
|
|
|
|
dictionary BrowserElementExecuteScriptOptions {
|
|
DOMString? url;
|
|
DOMString? origin;
|
|
};
|
|
|
|
interface mixin BrowserElement {
|
|
};
|
|
|
|
BrowserElement includes BrowserElementCommon;
|
|
BrowserElement includes BrowserElementPrivileged;
|
|
|
|
interface mixin BrowserElementCommon {
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void addNextPaintListener(BrowserElementNextPaintEventCallback listener);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void removeNextPaintListener(BrowserElementNextPaintEventCallback listener);
|
|
};
|
|
|
|
interface mixin BrowserElementPrivileged {
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void sendMouseEvent(DOMString type,
|
|
unsigned long x,
|
|
unsigned long y,
|
|
unsigned long button,
|
|
unsigned long clickCount,
|
|
unsigned long modifiers);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
Func="TouchEvent::PrefEnabled",
|
|
ChromeOnly]
|
|
void sendTouchEvent(DOMString type,
|
|
sequence<unsigned long> identifiers,
|
|
sequence<long> x,
|
|
sequence<long> y,
|
|
sequence<unsigned long> rx,
|
|
sequence<unsigned long> ry,
|
|
sequence<float> rotationAngles,
|
|
sequence<float> forces,
|
|
unsigned long count,
|
|
unsigned long modifiers);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void goBack();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void goForward();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void reload(optional boolean hardReload = false);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void stop();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest download(DOMString url,
|
|
optional BrowserElementDownloadOptions options);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest purgeHistory();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest getScreenshot([EnforceRange] unsigned long width,
|
|
[EnforceRange] unsigned long height,
|
|
optional DOMString mimeType="");
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void zoom(float zoom);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest getCanGoBack();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest getCanGoForward();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest getContentDimensions();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void findAll(DOMString searchString, BrowserFindCaseSensitivity caseSensitivity);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void findNext(BrowserFindDirection direction);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
void clearMatch();
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest executeScript(DOMString script,
|
|
optional BrowserElementExecuteScriptOptions options);
|
|
|
|
[Throws,
|
|
Pref="dom.mozBrowserFramesEnabled",
|
|
ChromeOnly]
|
|
DOMRequest getWebManifest();
|
|
|
|
};
|