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

LibWeb/HTML: Port Window.scroll{X,Y} / Window.page{X,Y}Offset to IDL

This commit is contained in:
Linus Groh 2023-03-06 19:51:44 +00:00
parent 25f53a577d
commit 40b4ee88de
4 changed files with 33 additions and 44 deletions

View file

@ -100,9 +100,6 @@ public:
CSS::CSSStyleDeclaration* get_computed_style_impl(DOM::Element&) const;
Optional<CSS::MediaFeatureValue> query_media_feature(CSS::MediaFeatureID) const;
float scroll_x() const;
float scroll_y() const;
void fire_a_page_transition_event(DeprecatedFlyString const& event_name, bool persisted);
float device_pixel_ratio() const;
@ -165,6 +162,9 @@ public:
i32 inner_width() const;
i32 inner_height() const;
double scroll_x() const;
double scroll_y() const;
WebIDL::ExceptionOr<JS::NonnullGCPtr<HighResolutionTime::Performance>> performance();
WebIDL::ExceptionOr<JS::NonnullGCPtr<Crypto::Crypto>> crypto();
@ -233,8 +233,6 @@ private:
JS_DECLARE_NATIVE_FUNCTION(device_pixel_ratio_getter);
JS_DECLARE_NATIVE_FUNCTION(scroll_x_getter);
JS_DECLARE_NATIVE_FUNCTION(scroll_y_getter);
JS_DECLARE_NATIVE_FUNCTION(scroll);
JS_DECLARE_NATIVE_FUNCTION(scroll_by);