summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HistoryHandlingBehavior.h
blob: 5c201854c41cb8bc9c2c9ee37fe327d7a95ee1c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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 {
    Default,
    EntryUpdate,
    Reload,
    Replace,
};

}