mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
57
Libraries/LibWeb/HTML/History.h
Normal file
57
Libraries/LibWeb/HTML/History.h
Normal file
|
@ -0,0 +1,57 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
||||
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/Bindings/HistoryPrototype.h>
|
||||
#include <LibWeb/Bindings/PlatformObject.h>
|
||||
#include <LibWeb/HTML/HistoryHandlingBehavior.h>
|
||||
#include <LibWeb/WebIDL/ExceptionOr.h>
|
||||
#include <LibWeb/WebIDL/Types.h>
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
class History final : public Bindings::PlatformObject {
|
||||
WEB_PLATFORM_OBJECT(History, Bindings::PlatformObject);
|
||||
JS_DECLARE_ALLOCATOR(History);
|
||||
|
||||
public:
|
||||
[[nodiscard]] static JS::NonnullGCPtr<History> create(JS::Realm&, DOM::Document&);
|
||||
|
||||
virtual ~History() override;
|
||||
|
||||
WebIDL::ExceptionOr<void> push_state(JS::Value data, String const& unused, Optional<String> const& url = {});
|
||||
WebIDL::ExceptionOr<void> replace_state(JS::Value data, String const& unused, Optional<String> const& url = {});
|
||||
WebIDL::ExceptionOr<void> go(WebIDL::Long delta);
|
||||
WebIDL::ExceptionOr<void> back();
|
||||
WebIDL::ExceptionOr<void> forward();
|
||||
WebIDL::ExceptionOr<u64> length() const;
|
||||
WebIDL::ExceptionOr<Bindings::ScrollRestoration> scroll_restoration() const;
|
||||
WebIDL::ExceptionOr<void> set_scroll_restoration(Bindings::ScrollRestoration);
|
||||
WebIDL::ExceptionOr<JS::Value> state() const;
|
||||
|
||||
u64 m_index { 0 };
|
||||
u64 m_length { 0 };
|
||||
|
||||
JS::Value unsafe_state() const;
|
||||
void set_state(JS::Value s) { m_state = s; }
|
||||
|
||||
private:
|
||||
History(JS::Realm&, DOM::Document&);
|
||||
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
virtual void visit_edges(Cell::Visitor&) override;
|
||||
|
||||
WebIDL::ExceptionOr<void> shared_history_push_replace_state(JS::Value data, Optional<String> const& url, HistoryHandlingBehavior);
|
||||
|
||||
JS::NonnullGCPtr<DOM::Document> m_associated_document;
|
||||
JS::Value m_state { JS::js_null() };
|
||||
};
|
||||
|
||||
bool can_have_its_url_rewritten(DOM::Document const& document, URL::URL const& target_url);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue