1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

LibWeb: Remove unused javascript: url navigation methods in Document

Those are superseded by methods to navigate `javascript:` url in
navigables.
This commit is contained in:
Aliaksandr Kalenik 2023-09-13 15:29:12 +02:00 committed by Andreas Kling
parent 38461a7b86
commit f01cbaf5fb
2 changed files with 0 additions and 38 deletions

View file

@ -234,9 +234,6 @@ public:
HTML::EnvironmentSettingsObject& relevant_settings_object() const;
void navigate_to_javascript_url(StringView url);
void evaluate_javascript_url(StringView url);
WebIDL::ExceptionOr<JS::NonnullGCPtr<Element>> create_element(String const& local_name, Variant<String, ElementCreationOptions> const& options);
WebIDL::ExceptionOr<JS::NonnullGCPtr<Element>> create_element_ns(Optional<String> const& namespace_, String const& qualified_name, Variant<String, ElementCreationOptions> const& options);
JS::NonnullGCPtr<DocumentFragment> create_document_fragment();