DOMRect.idl 267 B

12345678910
  1. interface DOMRect : DOMRectReadOnly {
  2. constructor(optional double x = 0, optional double y = 0, optional double width = 0, optional double height = 0);
  3. attribute double x;
  4. attribute double y;
  5. attribute double width;
  6. attribute double height;
  7. };