LibWeb: Amend DomParser to make it compatible with TrustedTypes

This commit is contained in:
Tete17 2025-08-11 00:31:46 +02:00 committed by Luke Wilde
parent 33285467a8
commit c591f8c14f
Notes: github-actions[bot] 2025-10-27 16:15:49 +00:00
4 changed files with 20 additions and 9 deletions

View file

@ -13,5 +13,5 @@ enum DOMParserSupportedType {
interface DOMParser {
constructor();
Document parseFromString(DOMString string, DOMParserSupportedType type);
Document parseFromString(Utf16DOMString string, DOMParserSupportedType type);
};