2022-12-12 16:55:34 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2022-12-12 16:55:34 -03:00
|
|
|
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/HTML/DocumentState.h>
|
2026-02-11 03:33:58 -03:00
|
|
|
#include <LibWeb/HTML/SessionHistoryEntry.h>
|
2022-12-12 16:55:34 -03:00
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
|
|
DocumentState::DocumentState() = default;
|
|
|
|
|
|
|
|
|
|
DocumentState::~DocumentState() = default;
|
|
|
|
|
|
|
|
|
|
}
|