summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLElement.idl
blob: 6b5de34cdb37116f0b96e15a0acbf41f67abb06f (plain)
1
2
3
4
5
6
7
8
9
10
11
interface HTMLElement : Element {

    [Reflect] attribute DOMString title;
    [Reflect] attribute DOMString lang;

    [Reflect] attribute boolean hidden;

    attribute DOMString contentEditable;

    [LegacyNullToEmptyString] attribute DOMString innerText;
};