mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 20:07:34 +00:00
LibWeb: Remove declarations for non-existent methods
This commit is contained in:
parent
8d31e04b8a
commit
7891ad2a28
5 changed files with 0 additions and 9 deletions
|
@ -1377,8 +1377,6 @@ public:
|
||||||
|
|
||||||
virtual ~ConicGradientStyleValue() override = default;
|
virtual ~ConicGradientStyleValue() override = default;
|
||||||
|
|
||||||
CSSPixelPoint resolve_position(Layout::Node const&, CSSPixelRect const&) const;
|
|
||||||
|
|
||||||
bool is_repeating() const { return m_repeating == GradientRepeating::Yes; }
|
bool is_repeating() const { return m_repeating == GradientRepeating::Yes; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
|
@ -313,8 +313,6 @@ public:
|
||||||
|
|
||||||
bool is_following(Node const&) const;
|
bool is_following(Node const&) const;
|
||||||
|
|
||||||
void prepend_child(JS::NonnullGCPtr<Node> node);
|
|
||||||
|
|
||||||
Node* next_in_pre_order()
|
Node* next_in_pre_order()
|
||||||
{
|
{
|
||||||
if (first_child())
|
if (first_child())
|
||||||
|
|
|
@ -27,7 +27,6 @@ public:
|
||||||
auto const& browsing_context_set() const { return m_browsing_context_set; }
|
auto const& browsing_context_set() const { return m_browsing_context_set; }
|
||||||
|
|
||||||
void append(BrowsingContext&);
|
void append(BrowsingContext&);
|
||||||
void remove(BrowsingContext&);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
explicit BrowsingContextGroup(Web::Page&);
|
explicit BrowsingContextGroup(Web::Page&);
|
||||||
|
|
|
@ -51,8 +51,6 @@ private:
|
||||||
virtual void initialize(JS::Realm&) override;
|
virtual void initialize(JS::Realm&) override;
|
||||||
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
||||||
|
|
||||||
void animate();
|
|
||||||
|
|
||||||
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
||||||
|
|
||||||
ImageLoader m_image_loader;
|
ImageLoader m_image_loader;
|
||||||
|
|
|
@ -15,8 +15,6 @@ class WorkerLocation : public Bindings::PlatformObject {
|
||||||
WEB_PLATFORM_OBJECT(WorkerLocation, Bindings::PlatformObject);
|
WEB_PLATFORM_OBJECT(WorkerLocation, Bindings::PlatformObject);
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static JS::NonnullGCPtr<WorkerLocation> create(WorkerGlobalScope&);
|
|
||||||
|
|
||||||
virtual ~WorkerLocation() override;
|
virtual ~WorkerLocation() override;
|
||||||
|
|
||||||
DeprecatedString href() const;
|
DeprecatedString href() const;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue