Files
tubestation/dom/webidl/Screen.webidl
Emilio Cobos Álvarez 02fbb2e9d3 Bug 1858977 - Don't throw on screen getters. r=smaug,webidl
The screen lifetime seems like it was a lot more complicated
in the past (looking at the comments in Window.webidl).

But nowadays it seems it can be more similar to the other
objects like VisualViewport etc.

Differential Revision: https://phabricator.services.mozilla.com/D193212
2023-11-10 09:29:14 +00:00

74 lines
2.2 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/. */
[Exposed=Window]
interface Screen : EventTarget {
// CSSOM-View
// http://dev.w3.org/csswg/cssom-view/#the-screen-interface
readonly attribute long availWidth;
readonly attribute long availHeight;
readonly attribute long width;
readonly attribute long height;
readonly attribute long colorDepth;
readonly attribute long pixelDepth;
readonly attribute long top;
readonly attribute long left;
readonly attribute long availTop;
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/unlock screen orientation to the specified type.
*
* FIXME(emilio): These do literally nothing, we should
* try to remove these.
*/
boolean mozLockOrientation(DOMString orientation);
boolean mozLockOrientation(sequence<DOMString> orientation);
undefined mozUnlockOrientation();
};
// https://w3c.github.io/screen-orientation
partial interface Screen {
readonly attribute ScreenOrientation orientation;
};
// https://wicg.github.io/media-capabilities/#idl-index
enum ScreenColorGamut {
"srgb",
"p3",
"rec2020",
};
[Func="nsScreen::MediaCapabilitiesEnabled",
Exposed=Window]
interface ScreenLuminance {
readonly attribute double min;
readonly attribute double max;
readonly attribute double maxAverage;
};
partial interface Screen {
[Func="nsScreen::MediaCapabilitiesEnabled"]
readonly attribute ScreenColorGamut colorGamut;
[Func="nsScreen::MediaCapabilitiesEnabled"]
readonly attribute ScreenLuminance? luminance;
[Func="nsScreen::MediaCapabilitiesEnabled"]
attribute EventHandler onchange;
};