blob: 075ef57e32598bdfa4ef3fe942a34143f49073c9 (
plain)
1
2
3
4
5
6
7
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;
};
|