Note: This feature is available in Web Workers.
The DOMRectReadOnly interface specifies the standard properties (also used by DOMRect) to define a rectangle whose properties are immutable.
DOMRectReadOnly()Defined to create a new DOMRectReadOnly object.
DOMRectReadOnly.x Read onlyReturns the x coordinate of the DOMRectReadOnly's origin.
DOMRectReadOnly.y Read onlyReturns the y coordinate of the DOMRectReadOnly's origin.
DOMRectReadOnly.width Read onlyReturns the width of the DOMRectReadOnly.
DOMRectReadOnly.height Read onlyReturns the height of the DOMRectReadOnly.
DOMRectReadOnly.top Read onlyReturns the top coordinate value of the DOMRectReadOnly (usually the same as y).
DOMRectReadOnly.right Read onlyReturns the right coordinate value of the DOMRectReadOnly (usually the same as x + width).
DOMRectReadOnly.bottom Read onlyReturns the bottom coordinate value of the DOMRectReadOnly (usually the same as y + height).
DOMRectReadOnly.left Read onlyReturns the left coordinate value of the DOMRectReadOnly (usually the same as x).
DOMRectReadOnly.fromRect()Creates a new DOMRectReadOnly object with a given location and dimensions.
DOMRectReadOnly.toJSON()Returns a JSON representation of the DOMRectReadOnly object.