mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-30 16:28:48 +00:00
LibWeb: Rename HTMLDocumentParser => HTMLParser
This commit is contained in:
parent
0ee457dfdf
commit
f67648f872
Notes:
sideshowbarker
2024-07-18 03:27:16 +09:00
Author: https://github.com/awesomekling
Commit: f67648f872
18 changed files with 106 additions and 106 deletions
|
@ -23,10 +23,10 @@ public:
|
|||
bool is_ready_to_be_parser_executed() const { return m_ready_to_be_parser_executed; }
|
||||
bool failed_to_load() const { return m_failed_to_load; }
|
||||
|
||||
void set_parser_document(Badge<HTMLDocumentParser>, DOM::Document&);
|
||||
void set_non_blocking(Badge<HTMLDocumentParser>, bool);
|
||||
void set_already_started(Badge<HTMLDocumentParser>, bool b) { m_already_started = b; }
|
||||
void prepare_script(Badge<HTMLDocumentParser>) { prepare_script(); }
|
||||
void set_parser_document(Badge<HTMLParser>, DOM::Document&);
|
||||
void set_non_blocking(Badge<HTMLParser>, bool);
|
||||
void set_already_started(Badge<HTMLParser>, bool b) { m_already_started = b; }
|
||||
void prepare_script(Badge<HTMLParser>) { prepare_script(); }
|
||||
void execute_script();
|
||||
|
||||
bool is_parser_inserted() const { return !!m_parser_document; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue