Implement compact/type attributes for HTMLUListElement (#33303)

Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
Simon Wülker 2024-09-04 08:17:27 +02:00 committed by GitHub
parent 93cd8d1ba4
commit e43e477842
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 20 additions and 238 deletions

View file

@ -12,8 +12,8 @@ interface HTMLUListElement : HTMLElement {
// https://html.spec.whatwg.org/multipage/#HTMLUListElement-partial
partial interface HTMLUListElement {
// [CEReactions]
// attribute boolean compact;
// [CEReactions]
// attribute DOMString type;
[CEReactions]
attribute boolean compact;
[CEReactions]
attribute DOMString type;
};