mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:08:13 +00:00
Everywhere: Use unqualified AK::URL
Now possible in LibWeb now that there is no longer a Web::URL.
This commit is contained in:
parent
f9e5b43b7a
commit
9ce8189f21
156 changed files with 471 additions and 471 deletions
|
@ -20,7 +20,7 @@ public:
|
|||
String href() const;
|
||||
WebIDL::ExceptionOr<void> set_href(String const& href);
|
||||
|
||||
AK::URL const& frozen_base_url() const { return m_frozen_base_url; }
|
||||
URL const& frozen_base_url() const { return m_frozen_base_url; }
|
||||
|
||||
virtual void inserted() override;
|
||||
virtual void removed_from(Node*) override;
|
||||
|
@ -34,7 +34,7 @@ private:
|
|||
|
||||
// https://html.spec.whatwg.org/multipage/semantics.html#frozen-base-url
|
||||
// A base element that is the first base element with an href content attribute in a document tree has a frozen base URL.
|
||||
AK::URL m_frozen_base_url;
|
||||
URL m_frozen_base_url;
|
||||
|
||||
void set_the_frozen_base_url();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue