summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/VisibilityState.h
blob: 002f8937489e23585060324aa6dc3d7249a16d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

namespace Web::HTML {

enum VisibilityState {
    Hidden,
    Visible,
};

}