mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:47:44 +00:00
LibWeb: Implement the Screen interface
https://drafts.csswg.org/cssom-view/#the-screen-interface
This commit is contained in:
parent
e8739ddab7
commit
340e1f4b28
10 changed files with 138 additions and 0 deletions
8
Userland/Libraries/LibWeb/CSS/Screen.idl
Normal file
8
Userland/Libraries/LibWeb/CSS/Screen.idl
Normal file
|
@ -0,0 +1,8 @@
|
|||
interface Screen {
|
||||
readonly attribute long availWidth;
|
||||
readonly attribute long availHeight;
|
||||
readonly attribute long width;
|
||||
readonly attribute long height;
|
||||
readonly attribute unsigned long colorDepth;
|
||||
readonly attribute unsigned long pixelDepth;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue