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

LibWeb: Implement Element.insertAdjacentElement

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

View file

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