mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 20:24:57 +00:00
LibWeb: Fix off-by-one error when highlighting unquoted HTML attributes
This fixes #11166
This commit is contained in:
parent
2e4e0195de
commit
197759e30f
1 changed files with 1 additions and 1 deletions
|
@ -1237,7 +1237,7 @@ _StartOfFunction:
|
|||
ON_WHITESPACE
|
||||
{
|
||||
m_current_token.last_attribute().value = consume_current_builder();
|
||||
m_current_token.last_attribute().value_end_position = nth_last_position(2);
|
||||
m_current_token.last_attribute().value_end_position = nth_last_position(1);
|
||||
SWITCH_TO(BeforeAttributeName);
|
||||
}
|
||||
ON('&')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue