Serenity Operating System
1// https://w3c.github.io/csswg-drafts/cssom-view-1/#screen
2[Exposed=Window]
3interface Screen {
4 readonly attribute long availWidth;
5 readonly attribute long availHeight;
6 readonly attribute long width;
7 readonly attribute long height;
8 readonly attribute unsigned long colorDepth;
9 readonly attribute unsigned long pixelDepth;
10};