mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
18d99919be
Exposes removeAttribute, hasAttribute and hasAttributes.
23 lines
852 B
Text
23 lines
852 B
Text
interface Element : Node {
|
|
readonly attribute DOMString? namespaceURI;
|
|
readonly attribute DOMString tagName;
|
|
|
|
DOMString? getAttribute(DOMString qualifiedName);
|
|
undefined setAttribute(DOMString qualifiedName, DOMString value);
|
|
undefined removeAttribute(DOMString qualifiedName);
|
|
boolean hasAttribute(DOMString qualifiedName);
|
|
boolean hasAttributes();
|
|
|
|
readonly attribute Element? firstElementChild;
|
|
readonly attribute Element? lastElementChild;
|
|
|
|
Element? querySelector(DOMString selectors);
|
|
ArrayFromVector querySelectorAll(DOMString selectors);
|
|
|
|
[LegacyNullToEmptyString] attribute DOMString innerHTML;
|
|
[Reflect] attribute DOMString id;
|
|
[Reflect=class] attribute DOMString className;
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
readonly attribute Element? previousElementSibling;
|
|
};
|