1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:07:34 +00:00

LibWeb: Implement Element.insertAdjacentText

This commit is contained in:
Luke Wilde 2022-10-01 00:30:38 +01:00 committed by Andreas Kling
parent d540e2ec98
commit 540c307009
3 changed files with 14 additions and 0 deletions

View file

@ -54,6 +54,7 @@ interface Element : Node {
readonly attribute long clientHeight;
[CEReactions] Element? insertAdjacentElement(DOMString where, Element element);
undefined insertAdjacentText(DOMString where, DOMString data);
[CEReactions] undefined insertAdjacentHTML(DOMString position, DOMString text);
};