mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibWeb: Implement stub for ElementInternals
This implements a stub ElementInternals object which implements the shadowRoot getter only. Also implement attachInternals function.
This commit is contained in:
committed by
Andreas Kling
parent
ce8d3d17c4
commit
a65f1ecc37
@@ -48,6 +48,7 @@ static bool is_platform_object(Type const& type)
|
||||
"DocumentType"sv,
|
||||
"DOMRectReadOnly"sv,
|
||||
"DynamicsCompressorNode"sv,
|
||||
"ElementInternals"sv,
|
||||
"EventTarget"sv,
|
||||
"FileList"sv,
|
||||
"FontFace"sv,
|
||||
|
||||
@@ -30,6 +30,7 @@ source_set("HTML") {
|
||||
"Dates.cpp",
|
||||
"DecodedImageData.cpp",
|
||||
"DocumentState.cpp",
|
||||
"ElementInternals.cpp",
|
||||
"ErrorEvent.cpp",
|
||||
"EventHandler.cpp",
|
||||
"EventNames.cpp",
|
||||
|
||||
@@ -119,6 +119,7 @@ standard_idl_files = [
|
||||
"//Userland/Libraries/LibWeb/HTML/DataTransfer.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/DOMParser.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/DOMStringMap.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/ElementInternals.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/ErrorEvent.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/EventSource.idl",
|
||||
"//Userland/Libraries/LibWeb/HTML/FormDataEvent.idl",
|
||||
|
||||
Reference in New Issue
Block a user