mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
17 lines
200 B
C
17 lines
200 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
namespace Web::HTML {
|
||
|
|
|
||
|
|
enum class InitialInsertion : u8 {
|
||
|
|
Yes,
|
||
|
|
No,
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|