summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM/CharacterData.idl
blob: e024979c05fbfd84afc6cd6231efe27bf600249d (plain)
1
2
3
4
5
6
7
8
9
interface CharacterData : Node {

    attribute DOMString data;
    readonly attribute unsigned long length;

    readonly attribute Element? nextElementSibling;
    readonly attribute Element? previousElementSibling;

};