mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 15:46:33 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
parent
950e819ee7
commit
93712b24bf
Notes:
github-actions[bot]
2024-11-10 11:51:52 +00:00
Author: https://github.com/trflynn89
Commit: 93712b24bf
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2256
Reviewed-by: https://github.com/sideshowbarker
4547 changed files with 104 additions and 113 deletions
63
Libraries/LibWeb/HTML/HTMLElement.idl
Normal file
63
Libraries/LibWeb/HTML/HTMLElement.idl
Normal file
|
@ -0,0 +1,63 @@
|
|||
#import <CSS/ElementCSSInlineStyle.idl>
|
||||
#import <HTML/DOMStringMap.idl>
|
||||
#import <HTML/ElementInternals.idl>
|
||||
#import <HTML/HTMLOrSVGElement.idl>
|
||||
#import <DOM/Element.idl>
|
||||
#import <DOM/EventHandler.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/semantics.html#htmlelement
|
||||
[Exposed=Window]
|
||||
interface HTMLElement : Element {
|
||||
|
||||
[HTMLConstructor] constructor();
|
||||
|
||||
// metadata attributes
|
||||
[Reflect, CEReactions] attribute DOMString title;
|
||||
[Reflect, CEReactions] attribute DOMString lang;
|
||||
[FIXME, CEReactions] attribute boolean translate;
|
||||
[CEReactions] attribute DOMString dir;
|
||||
|
||||
// user interaction
|
||||
[Reflect, CEReactions] attribute boolean hidden;
|
||||
[Reflect, CEReactions] attribute boolean inert;
|
||||
undefined click();
|
||||
[Reflect=accesskey, CEReactions] attribute DOMString accessKey;
|
||||
readonly attribute DOMString accessKeyLabel;
|
||||
[FIXME, CEReactions] attribute boolean draggable;
|
||||
[FIXME, CEReactions] attribute boolean spellcheck;
|
||||
[FIXME, CEReactions] attribute DOMString autocapitalize;
|
||||
[FIXME, CEReactions] attribute boolean autocorrect;
|
||||
|
||||
[LegacyNullToEmptyString, CEReactions] attribute DOMString innerText;
|
||||
[LegacyNullToEmptyString, CEReactions] attribute DOMString outerText;
|
||||
|
||||
ElementInternals attachInternals();
|
||||
|
||||
// The popover API
|
||||
[FIXME] undefined showPopover();
|
||||
[FIXME] undefined hidePopover();
|
||||
[FIXME] boolean togglePopover(optional boolean force);
|
||||
[CEReactions] attribute DOMString? popover;
|
||||
|
||||
// https://drafts.csswg.org/cssom-view/#extensions-to-the-htmlelement-interface
|
||||
readonly attribute Element? offsetParent;
|
||||
readonly attribute long offsetTop;
|
||||
readonly attribute long offsetLeft;
|
||||
readonly attribute long offsetWidth;
|
||||
readonly attribute long offsetHeight;
|
||||
|
||||
};
|
||||
|
||||
HTMLElement includes GlobalEventHandlers;
|
||||
HTMLElement includes ElementContentEditable;
|
||||
HTMLElement includes HTMLOrSVGElement;
|
||||
|
||||
// https://html.spec.whatwg.org/#elementcontenteditable
|
||||
interface mixin ElementContentEditable {
|
||||
[CEReactions] attribute DOMString contentEditable;
|
||||
[FIXME, CEReactions] attribute DOMString enterKeyHint;
|
||||
readonly attribute boolean isContentEditable;
|
||||
[FIXME, CEReactions] attribute DOMString inputMode;
|
||||
};
|
||||
|
||||
HTMLElement includes ElementCSSInlineStyle;
|
Loading…
Add table
Add a link
Reference in a new issue