mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
LibWeb: Add CharacterData and Text IDL interfaces
This commit is contained in:
parent
354f9aafd5
commit
73645e11c4
7 changed files with 36 additions and 6 deletions
9
Libraries/LibWeb/DOM/CharacterData.idl
Normal file
9
Libraries/LibWeb/DOM/CharacterData.idl
Normal file
|
@ -0,0 +1,9 @@
|
|||
interface CharacterData : Node {
|
||||
|
||||
attribute DOMString data;
|
||||
readonly attribute unsigned long length;
|
||||
|
||||
readonly attribute Element? nextElementSibling;
|
||||
readonly attribute Element? previousElementSibling;
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue