mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 05:52:21 +03:00
Merge pull request #861 from alexcrichton/less-moz
Purge a number of Mozilla-specific WebIDL
This commit is contained in:
commit
c517b00825
@ -3,8 +3,3 @@
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
* 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/.
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// This is a non-standard interface for @-moz-document rules
|
|
||||||
interface CSSMozDocumentRule : CSSConditionRule {
|
|
||||||
// XXX Add access to the URL list.
|
|
||||||
};
|
|
||||||
|
43
crates/web-sys/webidls/enabled/Document.webidl
vendored
43
crates/web-sys/webidls/enabled/Document.webidl
vendored
@ -188,37 +188,6 @@ partial interface Document {
|
|||||||
* @see <https://developer.mozilla.org/en/DOM/document.releaseCapture>
|
* @see <https://developer.mozilla.org/en/DOM/document.releaseCapture>
|
||||||
*/
|
*/
|
||||||
void releaseCapture();
|
void releaseCapture();
|
||||||
/**
|
|
||||||
* Use the given DOM element as the source image of target |-moz-element()|.
|
|
||||||
*
|
|
||||||
* This function introduces a new special ID (called "image element ID"),
|
|
||||||
* which is only used by |-moz-element()|, and associates it with the given
|
|
||||||
* DOM element. Image elements ID's have the higher precedence than general
|
|
||||||
* HTML id's, so if |document.mozSetImageElement(<id>, <element>)| is called,
|
|
||||||
* |-moz-element(#<id>)| uses |<element>| as the source image even if there
|
|
||||||
* is another element with id attribute = |<id>|. To unregister an image
|
|
||||||
* element ID |<id>|, call |document.mozSetImageElement(<id>, null)|.
|
|
||||||
*
|
|
||||||
* Example:
|
|
||||||
* <script>
|
|
||||||
* canvas = document.createElement("canvas");
|
|
||||||
* canvas.setAttribute("width", 100);
|
|
||||||
* canvas.setAttribute("height", 100);
|
|
||||||
* // draw to canvas
|
|
||||||
* document.mozSetImageElement("canvasbg", canvas);
|
|
||||||
* </script>
|
|
||||||
* <div style="background-image: -moz-element(#canvasbg);"></div>
|
|
||||||
*
|
|
||||||
* @param aImageElementId an image element ID to associate with
|
|
||||||
* |aImageElement|
|
|
||||||
* @param aImageElement a DOM element to be used as the source image of
|
|
||||||
* |-moz-element(#aImageElementId)|. If this is null, the function will
|
|
||||||
* unregister the image element ID |aImageElementId|.
|
|
||||||
*
|
|
||||||
* @see <https://developer.mozilla.org/en/DOM/document.mozSetImageElement>
|
|
||||||
*/
|
|
||||||
void mozSetImageElement(DOMString aImageElementId,
|
|
||||||
Element? aImageElement);
|
|
||||||
|
|
||||||
[ChromeOnly]
|
[ChromeOnly]
|
||||||
readonly attribute URI? documentURIObject;
|
readonly attribute URI? documentURIObject;
|
||||||
@ -256,23 +225,11 @@ partial interface Document {
|
|||||||
// versions have it uppercase.
|
// versions have it uppercase.
|
||||||
[LenientSetter, Unscopable, Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
[LenientSetter, Unscopable, Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||||
readonly attribute boolean fullscreen;
|
readonly attribute boolean fullscreen;
|
||||||
/*Non standard
|
|
||||||
[BinaryName="fullscreen"]
|
|
||||||
readonly attribute boolean mozFullScreen;
|
|
||||||
*/
|
|
||||||
[LenientSetter, Func="nsDocument::IsUnprefixedFullscreenEnabled", NeedsCallerType]
|
[LenientSetter, Func="nsDocument::IsUnprefixedFullscreenEnabled", NeedsCallerType]
|
||||||
readonly attribute boolean fullscreenEnabled;
|
readonly attribute boolean fullscreenEnabled;
|
||||||
/*Non standard
|
|
||||||
[BinaryName="fullscreenEnabled", NeedsCallerType]
|
|
||||||
readonly attribute boolean mozFullScreenEnabled;
|
|
||||||
*/
|
|
||||||
|
|
||||||
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||||
void exitFullscreen();
|
void exitFullscreen();
|
||||||
/*Non standard
|
|
||||||
[BinaryName="exitFullscreen"]
|
|
||||||
void mozCancelFullScreen();
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Events handlers
|
// Events handlers
|
||||||
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
[Func="nsDocument::IsUnprefixedFullscreenEnabled"]
|
||||||
|
@ -22,6 +22,4 @@ interface mixin DocumentOrShadowRoot {
|
|||||||
readonly attribute Element? pointerLockElement;
|
readonly attribute Element? pointerLockElement;
|
||||||
[LenientSetter, Func="nsIDocument::IsUnprefixedFullscreenEnabled"]
|
[LenientSetter, Func="nsIDocument::IsUnprefixedFullscreenEnabled"]
|
||||||
readonly attribute Element? fullscreenElement;
|
readonly attribute Element? fullscreenElement;
|
||||||
[BinaryName="fullscreenElement"]
|
|
||||||
readonly attribute Element? mozFullScreenElement;
|
|
||||||
};
|
};
|
||||||
|
19
crates/web-sys/webidls/enabled/Element.webidl
vendored
19
crates/web-sys/webidls/enabled/Element.webidl
vendored
@ -97,16 +97,6 @@ interface Element : Node {
|
|||||||
readonly attribute float fontSizeInflation;
|
readonly attribute float fontSizeInflation;
|
||||||
|
|
||||||
// Selectors API
|
// Selectors API
|
||||||
/**
|
|
||||||
* Returns whether this element would be selected by the given selector
|
|
||||||
* string.
|
|
||||||
*
|
|
||||||
* See <http://dev.w3.org/2006/webapi/selectors-api2/#matchesselector>
|
|
||||||
*/
|
|
||||||
/* Non standard
|
|
||||||
[Throws, Pure, BinaryName="matches"]
|
|
||||||
boolean mozMatchesSelector(DOMString selector);
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Pointer events methods.
|
// Pointer events methods.
|
||||||
[Throws, Pref="dom.w3c_pointer_events.enabled"]
|
[Throws, Pref="dom.w3c_pointer_events.enabled"]
|
||||||
@ -211,11 +201,6 @@ partial interface Element {
|
|||||||
void scrollTo(optional ScrollToOptions options);
|
void scrollTo(optional ScrollToOptions options);
|
||||||
void scrollBy(unrestricted double x, unrestricted double y);
|
void scrollBy(unrestricted double x, unrestricted double y);
|
||||||
void scrollBy(optional ScrollToOptions options);
|
void scrollBy(optional ScrollToOptions options);
|
||||||
// mozScrollSnap is used by chrome to perform scroll snapping after the
|
|
||||||
// user performs actions that may affect scroll position
|
|
||||||
// mozScrollSnap is deprecated, to be replaced by a web accessible API, such
|
|
||||||
// as an extension to the ScrollOptions dictionary. See bug 1137937.
|
|
||||||
[ChromeOnly] void mozScrollSnap();
|
|
||||||
|
|
||||||
readonly attribute long clientTop;
|
readonly attribute long clientTop;
|
||||||
readonly attribute long clientLeft;
|
readonly attribute long clientLeft;
|
||||||
@ -273,10 +258,6 @@ Element includes GeometryUtils;
|
|||||||
partial interface Element {
|
partial interface Element {
|
||||||
[Throws, Func="nsDocument::IsUnprefixedFullscreenEnabled", NeedsCallerType]
|
[Throws, Func="nsDocument::IsUnprefixedFullscreenEnabled", NeedsCallerType]
|
||||||
void requestFullscreen();
|
void requestFullscreen();
|
||||||
/*Non standard
|
|
||||||
[Throws, BinaryName="requestFullscreen", NeedsCallerType]
|
|
||||||
void mozRequestFullScreen();
|
|
||||||
*/
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// https://w3c.github.io/pointerlock/#extensions-to-the-element-interface
|
// https://w3c.github.io/pointerlock/#extensions-to-the-element-interface
|
||||||
|
@ -40,16 +40,4 @@ partial interface HTMLCanvasElement {
|
|||||||
OffscreenCanvas transferControlToOffscreen();
|
OffscreenCanvas transferControlToOffscreen();
|
||||||
};
|
};
|
||||||
|
|
||||||
[ChromeOnly]
|
|
||||||
interface MozCanvasPrintState
|
|
||||||
{
|
|
||||||
// A canvas rendering context.
|
|
||||||
readonly attribute nsISupports context;
|
|
||||||
|
|
||||||
// To be called when rendering to the context is done.
|
|
||||||
void done();
|
|
||||||
};
|
|
||||||
|
|
||||||
callback PrintCallback = void(MozCanvasPrintState ctx);
|
|
||||||
|
|
||||||
callback BlobCallback = void(Blob? blob);
|
callback BlobCallback = void(Blob? blob);
|
||||||
|
@ -38,7 +38,3 @@ partial interface HTMLEmbedElement {
|
|||||||
[NeedsSubjectPrincipal]
|
[NeedsSubjectPrincipal]
|
||||||
Document? getSVGDocument();
|
Document? getSVGDocument();
|
||||||
};
|
};
|
||||||
|
|
||||||
HTMLEmbedElement includes MozImageLoadingContent;
|
|
||||||
HTMLEmbedElement includes MozFrameLoaderOwner;
|
|
||||||
HTMLEmbedElement includes MozObjectLoadingContent;
|
|
||||||
|
@ -34,5 +34,3 @@ interface HTMLFrameElement : HTMLElement {
|
|||||||
[CEReactions, TreatNullAs=EmptyString, SetterThrows]
|
[CEReactions, TreatNullAs=EmptyString, SetterThrows]
|
||||||
attribute DOMString marginWidth;
|
attribute DOMString marginWidth;
|
||||||
};
|
};
|
||||||
|
|
||||||
HTMLFrameElement includes MozFrameLoaderOwner;
|
|
||||||
|
@ -59,11 +59,4 @@ partial interface HTMLIFrameElement {
|
|||||||
Document? getSVGDocument();
|
Document? getSVGDocument();
|
||||||
};
|
};
|
||||||
|
|
||||||
partial interface HTMLIFrameElement {
|
|
||||||
// nsIDOMMozBrowserFrame
|
|
||||||
[ChromeOnly,SetterThrows]
|
|
||||||
attribute boolean mozbrowser;
|
|
||||||
};
|
|
||||||
|
|
||||||
HTMLIFrameElement includes MozFrameLoaderOwner;
|
|
||||||
HTMLIFrameElement includes BrowserElement;
|
HTMLIFrameElement includes BrowserElement;
|
||||||
|
@ -147,8 +147,6 @@ partial interface HTMLInputElement {
|
|||||||
attribute DOMString useMap;
|
attribute DOMString useMap;
|
||||||
};
|
};
|
||||||
|
|
||||||
HTMLInputElement includes MozEditableElement;
|
|
||||||
|
|
||||||
/*Non standard
|
/*Non standard
|
||||||
partial interface HTMLInputElement {
|
partial interface HTMLInputElement {
|
||||||
[Pref="dom.input.dirpicker", SetterThrows]
|
[Pref="dom.input.dirpicker", SetterThrows]
|
||||||
@ -168,8 +166,6 @@ partial interface HTMLInputElement {
|
|||||||
};
|
};
|
||||||
*/
|
*/
|
||||||
|
|
||||||
HTMLInputElement includes MozImageLoadingContent;
|
|
||||||
|
|
||||||
// Webkit/Blink
|
// Webkit/Blink
|
||||||
partial interface HTMLInputElement {
|
partial interface HTMLInputElement {
|
||||||
[Pref="dom.webkitBlink.filesystem.enabled", Frozen, Cached, Pure]
|
[Pref="dom.webkitBlink.filesystem.enabled", Frozen, Cached, Pure]
|
||||||
|
@ -77,16 +77,3 @@ partial interface HTMLObjectElement {
|
|||||||
[NeedsSubjectPrincipal]
|
[NeedsSubjectPrincipal]
|
||||||
Document? getSVGDocument();
|
Document? getSVGDocument();
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Name:Value pair type used for passing parameters to NPAPI or javascript
|
|
||||||
* plugins.
|
|
||||||
*/
|
|
||||||
dictionary MozPluginParameter {
|
|
||||||
DOMString name = "";
|
|
||||||
DOMString value = "";
|
|
||||||
};
|
|
||||||
|
|
||||||
HTMLObjectElement includes MozImageLoadingContent;
|
|
||||||
HTMLObjectElement includes MozFrameLoaderOwner;
|
|
||||||
HTMLObjectElement includes MozObjectLoadingContent;
|
|
||||||
|
@ -80,5 +80,3 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||||||
[Throws]
|
[Throws]
|
||||||
void setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
void setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
||||||
};
|
};
|
||||||
|
|
||||||
HTMLTextAreaElement includes MozEditableElement;
|
|
||||||
|
@ -41,8 +41,4 @@ partial interface IDBDatabase {
|
|||||||
|
|
||||||
[Exposed=Window, Throws, UseCounter]
|
[Exposed=Window, Throws, UseCounter]
|
||||||
IDBRequest createMutableFile (DOMString name, optional DOMString type);
|
IDBRequest createMutableFile (DOMString name, optional DOMString type);
|
||||||
|
|
||||||
// this is deprecated due to renaming in the spec
|
|
||||||
[Exposed=Window, Throws, UseCounter]
|
|
||||||
IDBRequest mozCreateFileHandle (DOMString name, optional DOMString type); // now createMutableFile
|
|
||||||
};
|
};
|
||||||
|
@ -57,12 +57,6 @@ interface IDBIndex {
|
|||||||
};
|
};
|
||||||
|
|
||||||
partial interface IDBIndex {
|
partial interface IDBIndex {
|
||||||
[Throws]
|
|
||||||
IDBRequest mozGetAll (optional any key, [EnforceRange] optional unsigned long limit);
|
|
||||||
|
|
||||||
[Throws]
|
|
||||||
IDBRequest mozGetAllKeys (optional any key, [EnforceRange] optional unsigned long limit);
|
|
||||||
|
|
||||||
[Throws]
|
[Throws]
|
||||||
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
||||||
|
|
||||||
|
@ -59,10 +59,6 @@ interface IDBObjectStore {
|
|||||||
};
|
};
|
||||||
|
|
||||||
partial interface IDBObjectStore {
|
partial interface IDBObjectStore {
|
||||||
// Success fires IDBTransactionEvent, result == array of values for given keys
|
|
||||||
[Throws]
|
|
||||||
IDBRequest mozGetAll (optional any key, [EnforceRange] optional unsigned long limit);
|
|
||||||
|
|
||||||
[Throws]
|
[Throws]
|
||||||
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
IDBRequest getAll (optional any key, [EnforceRange] optional unsigned long limit);
|
||||||
|
|
||||||
|
@ -42,6 +42,4 @@ interface MediaSource : EventTarget {
|
|||||||
[Throws]
|
[Throws]
|
||||||
void clearLiveSeekableRange();
|
void clearLiveSeekableRange();
|
||||||
static boolean isTypeSupported(DOMString type);
|
static boolean isTypeSupported(DOMString type);
|
||||||
[ChromeOnly]
|
|
||||||
readonly attribute DOMString mozDebugReaderData;
|
|
||||||
};
|
};
|
||||||
|
@ -58,10 +58,6 @@ dictionary MediaTrackConstraintSet {
|
|||||||
ConstrainBoolean noiseSuppression;
|
ConstrainBoolean noiseSuppression;
|
||||||
ConstrainBoolean autoGainControl;
|
ConstrainBoolean autoGainControl;
|
||||||
ConstrainLong channelCount;
|
ConstrainLong channelCount;
|
||||||
|
|
||||||
// Deprecated with warnings:
|
|
||||||
ConstrainBoolean mozNoiseSuppression;
|
|
||||||
ConstrainBoolean mozAutoGainControl;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dictionary MediaTrackConstraints : MediaTrackConstraintSet {
|
dictionary MediaTrackConstraints : MediaTrackConstraintSet {
|
||||||
|
@ -3,14 +3,3 @@
|
|||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
* 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/.
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
[Constructor(DOMString type, optional MozApplicationEventInit eventInitDict), ChromeOnly]
|
|
||||||
interface MozApplicationEvent : Event
|
|
||||||
{
|
|
||||||
readonly attribute DOMApplication? application;
|
|
||||||
};
|
|
||||||
|
|
||||||
dictionary MozApplicationEventInit : EventInit
|
|
||||||
{
|
|
||||||
DOMApplication? application = null;
|
|
||||||
};
|
|
||||||
|
32
crates/web-sys/webidls/enabled/Navigator.webidl
vendored
32
crates/web-sys/webidls/enabled/Navigator.webidl
vendored
@ -201,33 +201,6 @@ callback NavigatorUserMediaErrorCallback = void (MediaStreamError error);
|
|||||||
partial interface Navigator {
|
partial interface Navigator {
|
||||||
[Throws, Func="Navigator::HasUserMediaSupport"]
|
[Throws, Func="Navigator::HasUserMediaSupport"]
|
||||||
readonly attribute MediaDevices mediaDevices;
|
readonly attribute MediaDevices mediaDevices;
|
||||||
|
|
||||||
// Deprecated. Use mediaDevices.getUserMedia instead.
|
|
||||||
[Deprecated="NavigatorGetUserMedia", Throws,
|
|
||||||
Func="Navigator::HasUserMediaSupport",
|
|
||||||
NeedsCallerType]
|
|
||||||
void mozGetUserMedia(MediaStreamConstraints constraints,
|
|
||||||
NavigatorUserMediaSuccessCallback successCallback,
|
|
||||||
NavigatorUserMediaErrorCallback errorCallback);
|
|
||||||
};
|
|
||||||
|
|
||||||
// nsINavigatorUserMedia
|
|
||||||
callback MozGetUserMediaDevicesSuccessCallback = void (nsIVariant? devices);
|
|
||||||
partial interface Navigator {
|
|
||||||
[Throws, ChromeOnly]
|
|
||||||
void mozGetUserMediaDevices(MediaStreamConstraints constraints,
|
|
||||||
MozGetUserMediaDevicesSuccessCallback onsuccess,
|
|
||||||
NavigatorUserMediaErrorCallback onerror,
|
|
||||||
// The originating innerWindowID is needed to
|
|
||||||
// avoid calling the callbacks if the window has
|
|
||||||
// navigated away. It is optional only as legacy.
|
|
||||||
optional unsigned long long innerWindowID = 0,
|
|
||||||
// The callID is needed in case of multiple
|
|
||||||
// concurrent requests to find the right one.
|
|
||||||
// It is optional only as legacy.
|
|
||||||
// TODO: Rewrite to not need this method anymore,
|
|
||||||
// now that devices are enumerated earlier.
|
|
||||||
optional DOMString callID = "");
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Service Workers/Navigation Controllers
|
// Service Workers/Navigation Controllers
|
||||||
@ -247,11 +220,6 @@ partial interface Navigator {
|
|||||||
readonly attribute Presentation? presentation;
|
readonly attribute Presentation? presentation;
|
||||||
};
|
};
|
||||||
|
|
||||||
partial interface Navigator {
|
|
||||||
[NewObject, Func="mozilla::dom::TCPSocket::ShouldTCPSocketExist"]
|
|
||||||
readonly attribute LegacyMozTCPSocket mozTCPSocket;
|
|
||||||
};
|
|
||||||
|
|
||||||
partial interface Navigator {
|
partial interface Navigator {
|
||||||
[NewObject]
|
[NewObject]
|
||||||
Promise<MediaKeySystemAccess>
|
Promise<MediaKeySystemAccess>
|
||||||
|
@ -67,7 +67,6 @@ dictionary NotificationOptions {
|
|||||||
DOMString icon = "";
|
DOMString icon = "";
|
||||||
boolean requireInteraction = false;
|
boolean requireInteraction = false;
|
||||||
any data = null;
|
any data = null;
|
||||||
NotificationBehavior mozbehavior = null;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
dictionary GetNotificationOptions {
|
dictionary GetNotificationOptions {
|
||||||
|
@ -48,13 +48,6 @@ partial interface Performance {
|
|||||||
attribute EventHandler onresourcetimingbufferfull;
|
attribute EventHandler onresourcetimingbufferfull;
|
||||||
};
|
};
|
||||||
|
|
||||||
// GC microbenchmarks, pref-guarded, not for general use (bug 1125412)
|
|
||||||
[Exposed=Window]
|
|
||||||
partial interface Performance {
|
|
||||||
[Pref="dom.enable_memory_stats"]
|
|
||||||
readonly attribute object mozMemory;
|
|
||||||
};
|
|
||||||
|
|
||||||
// http://www.w3.org/TR/user-timing/
|
// http://www.w3.org/TR/user-timing/
|
||||||
[Exposed=(Window,Worker)]
|
[Exposed=(Window,Worker)]
|
||||||
partial interface Performance {
|
partial interface Performance {
|
||||||
|
@ -36,18 +36,6 @@ enum RTCIceConnectionState {
|
|||||||
"closed"
|
"closed"
|
||||||
};
|
};
|
||||||
|
|
||||||
enum mozPacketDumpType {
|
|
||||||
"rtp", // dump unencrypted rtp as the MediaPipeline sees it
|
|
||||||
"srtp", // dump encrypted rtp as the MediaPipeline sees it
|
|
||||||
"rtcp", // dump unencrypted rtcp as the MediaPipeline sees it
|
|
||||||
"srtcp" // dump encrypted rtcp as the MediaPipeline sees it
|
|
||||||
};
|
|
||||||
|
|
||||||
callback mozPacketCallback = void (unsigned long level,
|
|
||||||
mozPacketDumpType type,
|
|
||||||
boolean sending,
|
|
||||||
ArrayBuffer packet);
|
|
||||||
|
|
||||||
dictionary RTCDataChannelInit {
|
dictionary RTCDataChannelInit {
|
||||||
boolean ordered = true;
|
boolean ordered = true;
|
||||||
unsigned short maxPacketLifeTime;
|
unsigned short maxPacketLifeTime;
|
||||||
@ -132,31 +120,6 @@ interface RTCPeerConnection : EventTarget {
|
|||||||
sequence<RTCRtpReceiver> getReceivers();
|
sequence<RTCRtpReceiver> getReceivers();
|
||||||
sequence<RTCRtpTransceiver> getTransceivers();
|
sequence<RTCRtpTransceiver> getTransceivers();
|
||||||
|
|
||||||
// test-only: for testing getContributingSources
|
|
||||||
[ChromeOnly]
|
|
||||||
DOMHighResTimeStamp mozGetNowInRtpSourceReferenceTime();
|
|
||||||
// test-only: for testing getContributingSources
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozInsertAudioLevelForContributingSource(RTCRtpReceiver receiver,
|
|
||||||
unsigned long source,
|
|
||||||
DOMHighResTimeStamp timestamp,
|
|
||||||
boolean hasLevel,
|
|
||||||
byte level);
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozAddRIDExtension(RTCRtpReceiver receiver, unsigned short extensionId);
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozAddRIDFilter(RTCRtpReceiver receiver, DOMString rid);
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozSetPacketCallback(mozPacketCallback callback);
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozEnablePacketDump(unsigned long level,
|
|
||||||
mozPacketDumpType type,
|
|
||||||
boolean sending);
|
|
||||||
[ChromeOnly]
|
|
||||||
void mozDisablePacketDump(unsigned long level,
|
|
||||||
mozPacketDumpType type,
|
|
||||||
boolean sending);
|
|
||||||
|
|
||||||
void close ();
|
void close ();
|
||||||
attribute EventHandler onnegotiationneeded;
|
attribute EventHandler onnegotiationneeded;
|
||||||
attribute EventHandler onicecandidate;
|
attribute EventHandler onicecandidate;
|
||||||
|
@ -53,8 +53,6 @@ dictionary RTCInboundRTPStreamStats : RTCRTPStreamStats {
|
|||||||
unsigned long long bytesReceived;
|
unsigned long long bytesReceived;
|
||||||
double jitter;
|
double jitter;
|
||||||
unsigned long packetsLost;
|
unsigned long packetsLost;
|
||||||
long mozAvSyncDelay;
|
|
||||||
long mozJitterBufferDelay;
|
|
||||||
long roundTripTime;
|
long roundTripTime;
|
||||||
|
|
||||||
// Video decoder measurement, not present in RTCP case
|
// Video decoder measurement, not present in RTCP case
|
||||||
@ -154,7 +152,6 @@ dictionary RTCIceCandidateStats : RTCStats {
|
|||||||
DOMString candidateId;
|
DOMString candidateId;
|
||||||
DOMString ipAddress;
|
DOMString ipAddress;
|
||||||
DOMString transport;
|
DOMString transport;
|
||||||
DOMString mozLocalTransport; // needs standardization
|
|
||||||
long portNumber;
|
long portNumber;
|
||||||
RTCStatsIceCandidateType candidateType;
|
RTCStatsIceCandidateType candidateType;
|
||||||
};
|
};
|
||||||
@ -200,6 +197,4 @@ dictionary RTCStatsReportInternal {
|
|||||||
JSImplementation="@mozilla.org/dom/rtcstatsreport;1"]
|
JSImplementation="@mozilla.org/dom/rtcstatsreport;1"]
|
||||||
interface RTCStatsReport {
|
interface RTCStatsReport {
|
||||||
readonly maplike<DOMString, object>;
|
readonly maplike<DOMString, object>;
|
||||||
[ChromeOnly]
|
|
||||||
readonly attribute DOMString mozPcid;
|
|
||||||
};
|
};
|
||||||
|
@ -26,10 +26,6 @@ interface Request {
|
|||||||
readonly attribute RequestRedirect redirect;
|
readonly attribute RequestRedirect redirect;
|
||||||
readonly attribute DOMString integrity;
|
readonly attribute DOMString integrity;
|
||||||
|
|
||||||
// If a main-thread fetch() promise rejects, the error passed will be a
|
|
||||||
// nsresult code.
|
|
||||||
[ChromeOnly]
|
|
||||||
readonly attribute boolean mozErrors;
|
|
||||||
|
|
||||||
[BinaryName="getOrCreateSignal"]
|
[BinaryName="getOrCreateSignal"]
|
||||||
readonly attribute AbortSignal signal;
|
readonly attribute AbortSignal signal;
|
||||||
@ -55,9 +51,6 @@ dictionary RequestInit {
|
|||||||
RequestRedirect redirect;
|
RequestRedirect redirect;
|
||||||
DOMString integrity;
|
DOMString integrity;
|
||||||
|
|
||||||
[ChromeOnly]
|
|
||||||
boolean mozErrors;
|
|
||||||
|
|
||||||
AbortSignal? signal;
|
AbortSignal? signal;
|
||||||
|
|
||||||
[Func="mozilla::dom::DOMPrefs::FetchObserverEnabled"]
|
[Func="mozilla::dom::DOMPrefs::FetchObserverEnabled"]
|
||||||
|
@ -23,5 +23,4 @@ interface SVGImageElement : SVGGraphicsElement {
|
|||||||
readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
|
readonly attribute SVGAnimatedPreserveAspectRatio preserveAspectRatio;
|
||||||
};
|
};
|
||||||
|
|
||||||
SVGImageElement includes MozImageLoadingContent;
|
|
||||||
SVGImageElement includes SVGURIReference;
|
SVGImageElement includes SVGURIReference;
|
||||||
|
26
crates/web-sys/webidls/enabled/Screen.webidl
vendored
26
crates/web-sys/webidls/enabled/Screen.webidl
vendored
@ -27,32 +27,6 @@ interface Screen : EventTarget {
|
|||||||
readonly attribute long availTop;
|
readonly attribute long availTop;
|
||||||
[Throws]
|
[Throws]
|
||||||
readonly attribute long availLeft;
|
readonly attribute long availLeft;
|
||||||
|
|
||||||
/**
|
|
||||||
* DEPRECATED, use ScreenOrientation API instead.
|
|
||||||
* Returns the current screen orientation.
|
|
||||||
* Can be: landscape-primary, landscape-secondary,
|
|
||||||
* portrait-primary or portrait-secondary.
|
|
||||||
*/
|
|
||||||
[NeedsCallerType]
|
|
||||||
readonly attribute DOMString mozOrientation;
|
|
||||||
|
|
||||||
attribute EventHandler onmozorientationchange;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DEPRECATED, use ScreenOrientation API instead.
|
|
||||||
* Lock screen orientation to the specified type.
|
|
||||||
*/
|
|
||||||
[Throws]
|
|
||||||
boolean mozLockOrientation(DOMString orientation);
|
|
||||||
[Throws]
|
|
||||||
boolean mozLockOrientation(sequence<DOMString> orientation);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* DEPRECATED, use ScreenOrientation API instead.
|
|
||||||
* Unlock the screen orientation.
|
|
||||||
*/
|
|
||||||
void mozUnlockOrientation();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// https://w3c.github.io/screen-orientation
|
// https://w3c.github.io/screen-orientation
|
||||||
|
12
crates/web-sys/webidls/enabled/TCPSocket.webidl
vendored
12
crates/web-sys/webidls/enabled/TCPSocket.webidl
vendored
@ -27,18 +27,6 @@ enum TCPReadyState {
|
|||||||
"closed",
|
"closed",
|
||||||
};
|
};
|
||||||
|
|
||||||
[NoInterfaceObject]
|
|
||||||
interface LegacyMozTCPSocket {
|
|
||||||
/**
|
|
||||||
* Legacy constructor for API compatibility.
|
|
||||||
*/
|
|
||||||
[Throws]
|
|
||||||
TCPSocket open(DOMString host, unsigned short port, optional SocketOptions options);
|
|
||||||
|
|
||||||
[Throws]
|
|
||||||
TCPServerSocket listen(unsigned short port, optional ServerSocketOptions options, optional unsigned short backlog = 0);
|
|
||||||
};
|
|
||||||
|
|
||||||
[Constructor(DOMString host, unsigned short port, optional SocketOptions options),
|
[Constructor(DOMString host, unsigned short port, optional SocketOptions options),
|
||||||
Func="mozilla::dom::TCPSocket::ShouldTCPSocketExist",
|
Func="mozilla::dom::TCPSocket::ShouldTCPSocketExist",
|
||||||
Exposed=(Window,System)]
|
Exposed=(Window,System)]
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// invalid widl
|
// invalid widl
|
||||||
//interface MozTreeView;
|
|
||||||
//interface nsIScriptableRegion;
|
//interface nsIScriptableRegion;
|
||||||
|
|
||||||
dictionary TreeCellInfo {
|
dictionary TreeCellInfo {
|
||||||
@ -23,14 +22,6 @@ interface TreeBoxObject : BoxObject {
|
|||||||
*/
|
*/
|
||||||
readonly attribute TreeColumns? columns;
|
readonly attribute TreeColumns? columns;
|
||||||
|
|
||||||
/**
|
|
||||||
* The view that backs the tree and that supplies it with its data.
|
|
||||||
* It is dynamically settable, either using a view attribute on the
|
|
||||||
* tree tag or by setting this attribute to a new value.
|
|
||||||
*/
|
|
||||||
[SetterThrows, NeedsCallerType]
|
|
||||||
attribute MozTreeView? view;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not we are currently focused.
|
* Whether or not we are currently focused.
|
||||||
*/
|
*/
|
||||||
|
@ -8,22 +8,3 @@
|
|||||||
* The declaration of each should match the declaration of the real, unprefixed
|
* The declaration of each should match the declaration of the real, unprefixed
|
||||||
* interface. These aliases will be removed at some point (Bug 1155923).
|
* interface. These aliases will be removed at some point (Bug 1155923).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
[Deprecated="WebrtcDeprecatedPrefix",
|
|
||||||
Pref="media.peerconnection.enabled",
|
|
||||||
JSImplementation="@mozilla.org/dom/rtcicecandidate;1",
|
|
||||||
Constructor(optional RTCIceCandidateInit candidateInitDict)]
|
|
||||||
interface mozRTCIceCandidate : RTCIceCandidate {};
|
|
||||||
|
|
||||||
[Deprecated="WebrtcDeprecatedPrefix",
|
|
||||||
Pref="media.peerconnection.enabled",
|
|
||||||
JSImplementation="@mozilla.org/dom/peerconnection;1",
|
|
||||||
Constructor (optional RTCConfiguration configuration,
|
|
||||||
optional object? constraints)]
|
|
||||||
interface mozRTCPeerConnection : RTCPeerConnection {};
|
|
||||||
|
|
||||||
[Deprecated="WebrtcDeprecatedPrefix",
|
|
||||||
Pref="media.peerconnection.enabled",
|
|
||||||
JSImplementation="@mozilla.org/dom/rtcsessiondescription;1",
|
|
||||||
Constructor(optional RTCSessionDescriptionInit descriptionInitDict)]
|
|
||||||
interface mozRTCSessionDescription : RTCSessionDescription {};
|
|
||||||
|
5
crates/web-sys/webidls/enabled/Window.webidl
vendored
5
crates/web-sys/webidls/enabled/Window.webidl
vendored
@ -174,11 +174,6 @@ partial interface Window {
|
|||||||
void scrollTo(optional ScrollToOptions options);
|
void scrollTo(optional ScrollToOptions options);
|
||||||
void scrollBy(unrestricted double x, unrestricted double y);
|
void scrollBy(unrestricted double x, unrestricted double y);
|
||||||
void scrollBy(optional ScrollToOptions options);
|
void scrollBy(optional ScrollToOptions options);
|
||||||
// mozScrollSnap is used by chrome to perform scroll snapping after the
|
|
||||||
// user performs actions that may affect scroll position
|
|
||||||
// mozScrollSnap is deprecated, to be replaced by a web accessible API, such
|
|
||||||
// as an extension to the ScrollOptions dictionary. See bug 1137937.
|
|
||||||
[ChromeOnly] void mozScrollSnap();
|
|
||||||
// The four properties below are double per spec at the moment, but whether
|
// The four properties below are double per spec at the moment, but whether
|
||||||
// that will continue is unclear.
|
// that will continue is unclear.
|
||||||
[Replaceable, Throws] readonly attribute double scrollX;
|
[Replaceable, Throws] readonly attribute double scrollX;
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
// invalid widl
|
// invalid widl
|
||||||
// interface InputStream;
|
// interface InputStream;
|
||||||
// interface MozChannel;
|
|
||||||
// interface IID;
|
// interface IID;
|
||||||
|
|
||||||
enum XMLHttpRequestResponseType {
|
enum XMLHttpRequestResponseType {
|
||||||
@ -24,27 +23,7 @@ enum XMLHttpRequestResponseType {
|
|||||||
"text",
|
"text",
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
[Constructor(),
|
||||||
* Parameters for instantiating an XMLHttpRequest. They are passed as an
|
|
||||||
* optional argument to the constructor:
|
|
||||||
*
|
|
||||||
* new XMLHttpRequest({anon: true, system: true});
|
|
||||||
*/
|
|
||||||
dictionary MozXMLHttpRequestParameters
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* If true, the request will be sent without cookie and authentication
|
|
||||||
* headers.
|
|
||||||
*/
|
|
||||||
boolean mozAnon = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* If true, the same origin policy will not be enforced on the request.
|
|
||||||
*/
|
|
||||||
boolean mozSystem = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
[Constructor(optional MozXMLHttpRequestParameters params),
|
|
||||||
// There are apparently callers, specifically CoffeeScript, who do
|
// There are apparently callers, specifically CoffeeScript, who do
|
||||||
// things like this:
|
// things like this:
|
||||||
// c = new(window.ActiveXObject || XMLHttpRequest)("Microsoft.XMLHTTP")
|
// c = new(window.ActiveXObject || XMLHttpRequest)("Microsoft.XMLHTTP")
|
||||||
|
Loading…
Reference in New Issue
Block a user