2020-08-03 20:50:45 +02:00
|
|
|
interface CharacterData : Node {
|
|
|
|
|
|
|
|
|
|
attribute DOMString data;
|
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
|
|
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
|
|
|
readonly attribute Element? previousElementSibling;
|
|
|
|
|
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|