mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:37:46 +00:00
LibWeb: Introduce CustomElementRegistry and creating custom elements
The main missing feature here is form associated custom elements.
This commit is contained in:
parent
083b547e97
commit
034aaf3f51
38 changed files with 1747 additions and 143 deletions
|
@ -6,6 +6,7 @@
|
|||
#import <DOM/EventTarget.idl>
|
||||
#import <HighResolutionTime/Performance.idl>
|
||||
#import <HTML/AnimationFrameProvider.idl>
|
||||
#import <HTML/CustomElements/CustomElementRegistry.idl>
|
||||
#import <HTML/Navigator.idl>
|
||||
#import <HTML/WindowLocalStorage.idl>
|
||||
#import <HTML/WindowOrWorkerGlobalScope.idl>
|
||||
|
@ -22,6 +23,7 @@ interface Window : EventTarget {
|
|||
attribute DOMString name;
|
||||
[PutForwards=href, LegacyUnforgeable] readonly attribute Location location;
|
||||
readonly attribute History history;
|
||||
readonly attribute CustomElementRegistry customElements;
|
||||
undefined focus();
|
||||
|
||||
// other browsing contexts
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue