1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

LibWeb: Implement the HTMLHyperlinkElementUtils mixin

This is used by HTMLAnchorElement and HTMLAreaElement to share
functionality related to their href attribute.
This commit is contained in:
Andreas Kling 2021-10-03 19:39:12 +02:00
parent e5b8544762
commit a7a3f41f67
9 changed files with 609 additions and 3 deletions

View file

@ -0,0 +1,64 @@
/*
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/URL.h>
#include <LibWeb/Forward.h>
namespace Web::HTML {
class HTMLHyperlinkElementUtils {
public:
virtual ~HTMLHyperlinkElementUtils();
String origin() const;
String href() const;
void set_href(String);
String protocol() const;
void set_protocol(String);
String username() const;
void set_username(String);
String password() const;
void set_password(String);
String host() const;
void set_host(String);
String hostname() const;
void set_hostname(String);
String port() const;
void set_port(String);
String pathname() const;
void set_pathname(String);
String search() const;
void set_search(String);
String hash() const;
void set_hash(String);
protected:
virtual DOM::Document const& hyperlink_element_utils_document() const = 0;
virtual String hyperlink_element_utils_href() const = 0;
virtual void set_hyperlink_element_utils_href(String) = 0;
void set_the_url();
private:
void reinitialize_url() const;
void update_href();
Optional<AK::URL> m_url;
};
}