1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 15:05:09 +00:00
serenity/Libraries/LibWeb/DOM/CharacterData.idl
2020-08-03 20:50:45 +02:00

9 lines
221 B
Text

interface CharacterData : Node {
attribute DOMString data;
readonly attribute unsigned long length;
readonly attribute Element? nextElementSibling;
readonly attribute Element? previousElementSibling;
}