mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-19 23:15:53 +00:00
LibWeb: Move everything into the Web namespace
This commit is contained in:
@@ -37,6 +37,8 @@
|
||||
#include <ctype.h>
|
||||
#include <stdio.h>
|
||||
|
||||
namespace Web {
|
||||
|
||||
static bool is_valid_in_attribute_name(char ch)
|
||||
{
|
||||
return isalnum(ch) || ch == '_' || ch == '-';
|
||||
@@ -378,3 +380,5 @@ RefPtr<Document> parse_html_document(const StringView& html, const URL& url)
|
||||
|
||||
return document;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user