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

LibWeb: Implement "get all used history steps" for traversables

https://html.spec.whatwg.org/multipage/browsing-the-web.html#getting-all-used-history-steps
This commit is contained in:
Aliaksandr Kalenik 2023-04-13 10:11:31 +03:00 committed by Andreas Kling
parent 6ec88b36b9
commit 62bc8590ad
2 changed files with 34 additions and 0 deletions

View file

@ -30,6 +30,8 @@ public:
bool running_nested_apply_history_step() const { return m_running_nested_apply_history_step; };
VisibilityState system_visibility_state() const { return m_system_visibility_state; };
Vector<int> get_all_used_history_steps() const;
private:
TraversableNavigable();