LibWeb: Use FlyString for Element tag names

This makes selector matching a lot more efficient, and also reduces the
number of strings on the heap.
This commit is contained in:
Andreas Kling 2020-03-22 19:10:43 +01:00
commit 7309642ca8
Notes: sideshowbarker 2024-07-19 08:10:55 +09:00
48 changed files with 67 additions and 63 deletions

View file

@ -26,7 +26,7 @@
#pragma once
#include <AK/String.h>
#include <AK/FlyString.h>
#include <LibWeb/DOM/CharacterData.h>
namespace Web {
@ -36,7 +36,7 @@ public:
explicit Comment(Document&, const String&);
virtual ~Comment() override;
virtual String tag_name() const override { return "#comment"; }
virtual FlyString tag_name() const override { return "#comment"; }
};
template<>