mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
LibWeb: Store HTML document ready state as an enum
This commit is contained in:
parent
c4ccbc5b83
commit
8496024756
Notes:
sideshowbarker
2024-07-18 03:26:22 +09:00
Author: https://github.com/awesomekling
Commit: 8496024756
4 changed files with 39 additions and 6 deletions
17
Userland/Libraries/LibWeb/HTML/DocumentReadyState.h
Normal file
17
Userland/Libraries/LibWeb/HTML/DocumentReadyState.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace Web::HTML {
|
||||
|
||||
enum class DocumentReadyState {
|
||||
Loading,
|
||||
Interactive,
|
||||
Complete,
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue