1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:57:44 +00:00

LibWeb: Add DOMRectReadOnly and make DOMRect inherit from it

This matches the class hierarchy of the CSS Geometry Interfaces Module.
This commit is contained in:
Andreas Kling 2021-10-08 22:59:15 +02:00
parent 77f72c7cfe
commit 3c0b55c284
7 changed files with 87 additions and 24 deletions

View file

@ -105,6 +105,7 @@ class ExceptionOr;
namespace Web::Geometry {
class DOMRect;
class DOMRectReadOnly;
}
namespace Web::HTML {
@ -293,6 +294,7 @@ class DOMExceptionWrapper;
class DOMImplementationWrapper;
class DOMParserWrapper;
class DOMRectWrapper;
class DOMRectReadOnlyWrapper;
class DOMStringMapWrapper;
class ElementWrapper;
class EventListenerWrapper;