This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * The **ResizeObserver** interface reports changes to the dimensions of an | |
| * [Element](https://developer.mozilla.org/en-US/docs/Web/API/Element)'s content | |
| * or border box, or the bounding box of an | |
| * [SVGElement](https://developer.mozilla.org/en-US/docs/Web/API/SVGElement). | |
| * | |
| * > **Note**: The content box is the box in which content can be placed, | |
| * > meaning the border box minus the padding and border width. The border box | |
| * > encompasses the content, padding, and border. See | |
| * > [The box model](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model) |