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

LibWeb: Move get_an_elements_{target,noopener} to HTMLElement

This will be used by form submission on `<form>` elements.
This commit is contained in:
Luke Wilde 2023-06-18 16:22:10 +01:00 committed by Andreas Kling
parent c9c1ddd0bb
commit 995df8f565
6 changed files with 65 additions and 48 deletions

View file

@ -55,8 +55,9 @@ protected:
virtual WebIDL::ExceptionOr<void> set_hyperlink_element_utils_href(DeprecatedString) = 0;
virtual bool hyperlink_element_utils_is_html_anchor_element() const = 0;
virtual bool hyperlink_element_utils_is_connected() const = 0;
virtual DeprecatedString hyperlink_element_utils_target() const = 0;
virtual DeprecatedString hyperlink_element_utils_rel() const = 0;
virtual DeprecatedString hyperlink_element_utils_get_an_elements_target() const = 0;
virtual TokenizedFeature::NoOpener hyperlink_element_utils_get_an_elements_noopener(StringView target) const = 0;
virtual void hyperlink_element_utils_queue_an_element_task(HTML::Task::Source source, Function<void()> steps) = 0;
void set_the_url();
@ -66,8 +67,6 @@ private:
void reinitialize_url() const;
void update_href();
bool cannot_navigate() const;
DeprecatedString get_an_elements_target() const;
TokenizedFeature::NoOpener get_an_elements_noopener(StringView target) const;
Optional<AK::URL> m_url;
};