mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
The DOMParsing spec is in the process of being merged into the HTML one,
gradually. The linked spec change moves XMLSerializer, but many of the
algorithms are still in the DOMParsing spec so I've left the links to
those alone.
I've done my best to update the GN build but since I'm not actually
using it, I might have done that wrong.
Corresponds to 2edb8cc7ee
48 lines
867 B
C++
48 lines
867 B
C++
/*
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Array.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace IDL {
|
|
|
|
static constexpr Array libweb_interface_namespaces = {
|
|
"CSS"sv,
|
|
"Clipboard"sv,
|
|
"Compression"sv,
|
|
"Crypto"sv,
|
|
"DOM"sv,
|
|
"DOMURL"sv,
|
|
"Encoding"sv,
|
|
"Fetch"sv,
|
|
"FileAPI"sv,
|
|
"Geometry"sv,
|
|
"HTML"sv,
|
|
"HighResolutionTime"sv,
|
|
"Internals"sv,
|
|
"IntersectionObserver"sv,
|
|
"MathML"sv,
|
|
"MediaSourceExtensions"sv,
|
|
"NavigationTiming"sv,
|
|
"RequestIdleCallback"sv,
|
|
"ResizeObserver"sv,
|
|
"SVG"sv,
|
|
"Selection"sv,
|
|
"ServiceWorker"sv,
|
|
"UIEvents"sv,
|
|
"URLPattern"sv,
|
|
"WebAudio"sv,
|
|
"WebGL"sv,
|
|
"WebIDL"sv,
|
|
"WebSockets"sv,
|
|
"XHR"sv,
|
|
};
|
|
|
|
}
|