blob: 5df049324b211176d8f4d49c2e42e6da1a101fa0 (
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;
}
|