LibWeb+LibGfx: Apply editorial punctuation/whitespace/markup fixes

Corresponds to d426109ea1
and fd08f81d06
This commit is contained in:
Sam Atkins 2025-06-24 11:18:14 +01:00 committed by Shannon Booth
parent a35d14eab3
commit 423cdd447d
Notes: github-actions[bot] 2025-06-24 15:13:34 +00:00
35 changed files with 108 additions and 103 deletions

View file

@ -2795,7 +2795,7 @@ void HTMLParser::handle_in_body(HTMLToken& token)
// 3. Switch the tokenizer to the RCDATA state.
m_tokenizer.switch_to({}, HTMLTokenizer::State::RCDATA);
// 4. Let the original insertion mode be the current insertion mode.
// 4. Set the original insertion mode to the current insertion mode.
m_original_insertion_mode = m_insertion_mode;
// 5. Set the frameset-ok flag to "not ok".
@ -3690,7 +3690,7 @@ void HTMLParser::handle_in_table(HTMLToken& token)
// Let the pending table character tokens be an empty list of tokens.
m_pending_table_character_tokens.clear();
// Let the original insertion mode be the current insertion mode.
// Set the original insertion mode to the current insertion mode.
m_original_insertion_mode = m_insertion_mode;
// Switch the insertion mode to "in table text" and reprocess the token.