LibWeb: Rename Attribute to Attr

This name is not very good, but it's what the specification calls it.
This commit is contained in:
Andreas Kling 2022-09-18 01:03:58 +02:00
commit 530675993b
Notes: sideshowbarker 2024-07-17 20:58:35 +09:00
18 changed files with 85 additions and 85 deletions

View file

@ -41,7 +41,7 @@ static bool is_wrappable_type(Type const& type)
return true;
if (type.name() == "Selection")
return true;
if (type.name() == "Attribute")
if (type.name() == "Attr")
return true;
if (type.name() == "NamedNodeMap")
return true;