1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 08:27:35 +00:00

LibWeb/HTML: Port Window.frames to IDL

This commit is contained in:
Linus Groh 2023-03-05 18:48:45 +00:00
parent 437a7c977e
commit dcff775ab1
3 changed files with 12 additions and 11 deletions

View file

@ -143,6 +143,8 @@ public:
JS::NonnullGCPtr<WindowProxy> window() const;
JS::NonnullGCPtr<WindowProxy> self() const;
JS::NonnullGCPtr<WindowProxy> frames() const;
JS::NonnullGCPtr<Navigator> navigator() const;
void alert(String const& message = {});
@ -243,8 +245,6 @@ private:
JS_DECLARE_NATIVE_FUNCTION(inner_width_getter);
JS_DECLARE_NATIVE_FUNCTION(inner_height_getter);
JS_DECLARE_NATIVE_FUNCTION(frames_getter);
JS_DECLARE_NATIVE_FUNCTION(parent_getter);
JS_DECLARE_NATIVE_FUNCTION(device_pixel_ratio_getter);