mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
39f74d3437
Co-Authored-By: Andrew Kaster <akaster@serenityos.org>
17 lines
305 B
C++
17 lines
305 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace Web::HTML {
|
|
|
|
// https://html.spec.whatwg.org/multipage/browsing-the-web.html#history-handling-behavior
|
|
enum class HistoryHandlingBehavior {
|
|
Push,
|
|
Replace,
|
|
};
|
|
|
|
}
|