Screen.idl 348 B

12345678910
  1. // https://w3c.github.io/csswg-drafts/cssom-view-1/#screen
  2. [Exposed=Window]
  3. interface 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. };