mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
LibWeb: Parse "input" tags during the "in body" insertion mode
This commit is contained in:
parent
7aa7a2078f
commit
772b51038e
Notes:
sideshowbarker
2024-07-19 06:02:38 +09:00
Author: https://github.com/awesomekling
Commit: 772b51038e
4 changed files with 26 additions and 0 deletions
|
@ -32,6 +32,7 @@ namespace AttributeNames {
|
|||
|
||||
FlyString id;
|
||||
FlyString class_;
|
||||
FlyString type;
|
||||
|
||||
void initialize()
|
||||
{
|
||||
|
@ -40,6 +41,7 @@ void initialize()
|
|||
return;
|
||||
id = "id";
|
||||
class_ = "class";
|
||||
type = "type";
|
||||
s_initialized = true;
|
||||
}
|
||||
|
||||
|
|
|
@ -36,6 +36,7 @@ void initialize();
|
|||
|
||||
extern FlyString id;
|
||||
extern FlyString class_;
|
||||
extern FlyString type;
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue