DOMRectReadOnly.idl 440 B

123456789101112131415
  1. interface DOMRectReadOnly {
  2. constructor(optional double x = 0, optional double y = 0, optional double width = 0, optional double height = 0);
  3. readonly attribute double x;
  4. readonly attribute double y;
  5. readonly attribute double width;
  6. readonly attribute double height;
  7. readonly attribute double top;
  8. readonly attribute double right;
  9. readonly attribute double bottom;
  10. readonly attribute double left;
  11. };