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

LibWeb: Implement Range.createContextualFragment()

This commit is contained in:
Andreas Kling 2023-03-10 14:56:44 +01:00
parent fb6d6a985f
commit e8f5085669
5 changed files with 78 additions and 2 deletions

View file

@ -43,4 +43,7 @@ interface Range : AbstractRange {
stringifier;
// Extensions from the DOM Parsing specification:
[CEReactions, NewObject] DocumentFragment createContextualFragment(DOMString fragment);
};