LibWeb: Remove Document::validate_qualified_name()

This is no longer used and appears to have been removed from the
specification.
This commit is contained in:
Tim Ledbetter 2025-06-19 13:07:03 +01:00 committed by Jelle Raaijmakers
commit 70f9eb9d8f
Notes: github-actions[bot] 2025-06-19 13:08:05 +00:00
2 changed files with 0 additions and 55 deletions

View file

@ -567,12 +567,6 @@ public:
static bool is_valid_name(String const&);
struct PrefixAndTagName {
FlyString prefix;
FlyString tag_name;
};
static WebIDL::ExceptionOr<PrefixAndTagName> validate_qualified_name(JS::Realm&, FlyString const& qualified_name);
GC::Ref<NodeIterator> create_node_iterator(Node& root, unsigned what_to_show, GC::Ptr<NodeFilter>);
GC::Ref<TreeWalker> create_tree_walker(Node& root, unsigned what_to_show, GC::Ptr<NodeFilter>);