From 55c546a914ee0fa34d2b57b8b2c8c5b8b23e8881 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Tue, 29 Oct 2024 14:55:58 +0900 Subject: [PATCH] Fix final step of insertAdjacentHTML() The operations were matched to the enum values incorrectly. Closes #10725. --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index 1024b55dd73..611d83976cc 100644 --- a/source +++ b/source @@ -114370,19 +114370,19 @@ enum DOMParserSupportedType { this's parent before this.

-
If position is an ASCII case-insensitive match for the string "afterend"
+
If position is an ASCII case-insensitive match for the string "afterbegin"

Insert fragment into this before its first child.

-
If position is an ASCII case-insensitive match for the string "afterbegin"
+
If position is an ASCII case-insensitive match for the string "beforeend"

Append fragment to this.

-
If position is an ASCII case-insensitive match for the string "beforeend"
+
If position is an ASCII case-insensitive match for the string "afterend"

Insert fragment into this's parent before this's