1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 14:08:10 +00:00

LibWeb: Use FlyString for element attribute names

Attribute names occur again and again.
This commit is contained in:
Andreas Kling 2020-03-22 13:10:04 +01:00
parent 26bc3d4ea0
commit 7f83f77377
6 changed files with 19 additions and 18 deletions

View file

@ -43,7 +43,7 @@ HTMLImageElement::~HTMLImageElement()
{
}
void HTMLImageElement::parse_attribute(const String& name, const String& value)
void HTMLImageElement::parse_attribute(const FlyString& name, const String& value)
{
if (name.equals_ignoring_case("src"))
load_image(value);