DOMRect.idl 307 B

123456789101112
  1. #import <Geometry/DOMRectReadOnly.idl>
  2. interface DOMRect : DOMRectReadOnly {
  3. constructor(optional double x = 0, optional double y = 0, optional double width = 0, optional double height = 0);
  4. attribute double x;
  5. attribute double y;
  6. attribute double width;
  7. attribute double height;
  8. };