Screen.idl 537 B

123456789101112131415
  1. #import <CSS/ScreenOrientation.idl>
  2. // https://w3c.github.io/csswg-drafts/cssom-view-1/#screen
  3. [Exposed=Window]
  4. interface Screen {
  5. readonly attribute long availWidth;
  6. readonly attribute long availHeight;
  7. readonly attribute long width;
  8. readonly attribute long height;
  9. readonly attribute unsigned long colorDepth;
  10. readonly attribute unsigned long pixelDepth;
  11. // https://w3c.github.io/screen-orientation/#extensions-to-the-screen-interface
  12. [SameObject] readonly attribute ScreenOrientation orientation;
  13. };