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

LibWeb: Remove unused SessionHistoryEntry::serialized_state

We never implemented this for History::pushState/popState, and now that
we're working on the Navigable changes, we don't need this legacy entry
with its legacy name.
This commit is contained in:
Andrew Kaster 2023-08-22 23:31:11 -06:00 committed by Andrew Kaster
parent ca233b5cf4
commit d3a8ee6e4b
2 changed files with 0 additions and 6 deletions

View file

@ -50,10 +50,6 @@ struct SessionHistoryEntry final : public JS::Cell {
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-document-state
JS::GCPtr<HTML::DocumentState> document_state;
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-serialized-state
// serialized state, which is serialized state, initially StructuredSerializeForStorage(null).
Optional<DeprecatedString> serialized_state;
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#she-scroll-restoration-mode
// scroll restoration mode, a scroll restoration mode, initially "auto"
ScrollRestorationMode scroll_restoration_mode { ScrollRestorationMode::Auto };