mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-15 23:01:52 +00:00
LibWeb: Update parser with more insertion modes :^)
Implements handling of InHeadNoScript, InSelectInTable, InTemplate, InFrameset, AfterFrameset, and AfterAfterFrameset.
This commit is contained in:
parent
8e24a17d0d
commit
5eb39a5f61
Notes:
sideshowbarker
2024-07-19 05:29:53 +09:00
Author: https://github.com/stelar7
Commit: 5eb39a5f61
Pull-request: https://github.com/SerenityOS/serenity/pull/2604
6 changed files with 471 additions and 30 deletions
|
@ -63,7 +63,7 @@ String HTMLToken::to_string() const
|
|||
builder.append(m_tag.tag_name.to_string());
|
||||
builder.append("', { ");
|
||||
for (auto& attribute : m_tag.attributes) {
|
||||
builder.append(attribute.name_builder.to_string());
|
||||
builder.append(attribute.local_name_builder.to_string());
|
||||
builder.append("=\"");
|
||||
builder.append(attribute.value_builder.to_string());
|
||||
builder.append("\" ");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue