From 243c0644561cd84e72eb2a33d48a0b6bbdfc6241 Mon Sep 17 00:00:00 2001 From: Chris Dumez Date: Thu, 13 Apr 2023 17:09:04 -0700 Subject: [PATCH] Unreviewed, drop obsolete comment in the HTML fast parser after 262934@main https://bugs.webkit.org/show_bug.cgi?id=255426 rdar://108022454 Drop comment in the HTML fast parser that is obsolete after 262934@main. The HTML fast parser should now support all HTML entities. * Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp: Canonical link: https://commits.webkit.org/262938@main --- Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp b/Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp index 3bb5e4dc2442..a06c580e785d 100644 --- a/Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp +++ b/Source/WebCore/html/parser/HTMLDocumentParserFastPath.cpp @@ -164,7 +164,6 @@ template static inline bool isCharAfterUnquotedAttribute // - Unquoted attribute names are very restricted. // - Many tags are unsupported, but we could support more. For example, // because of the complex re-parenting rules -// - Only a few named "&" character references are supported. // - No '\0'. The handling of '\0' varies depending upon where it is found // and in general the correct handling complicates things. // - Fails if an attribute name starts with 'on'. Such attributes are generally