From 1dd7fd14fff40646eafcc4908d8bbd961159f6c7 Mon Sep 17 00:00:00 2001 From: Bashamega Date: Sun, 11 Jan 2026 14:24:52 +0200 Subject: [PATCH] Migrate MutationRecord to KDL --- inputfiles/knownTypes.json | 1 - inputfiles/overridingTypes.jsonc | 10 ---------- inputfiles/patches/dom.kdl | 4 ++++ 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/inputfiles/knownTypes.json b/inputfiles/knownTypes.json index 02832fd14..ba052fbbf 100644 --- a/inputfiles/knownTypes.json +++ b/inputfiles/knownTypes.json @@ -32,7 +32,6 @@ "HmacKeyGenParams", "ImageBitmapRenderingContextSettings", "Keyframe", - "MutationRecordType", "NamedCurve", "OptionalPrefixToken", "OptionalPostfixToken", diff --git a/inputfiles/overridingTypes.jsonc b/inputfiles/overridingTypes.jsonc index e6a08dc8d..2a6cbd272 100644 --- a/inputfiles/overridingTypes.jsonc +++ b/inputfiles/overridingTypes.jsonc @@ -1563,16 +1563,6 @@ } } }, - "MutationRecord": { - "properties": { - "property": { - "type": { - "name": "type", - "overrideType": "MutationRecordType" - } - } - } - }, "URL": { "constructor": { "signature": { diff --git a/inputfiles/patches/dom.kdl b/inputfiles/patches/dom.kdl index ba2634290..2e4aac3df 100644 --- a/inputfiles/patches/dom.kdl +++ b/inputfiles/patches/dom.kdl @@ -26,6 +26,10 @@ interface Document { } } +interface MutationRecord { + property type type=MutationRecordType +} + enum InsertPosition { beforebegin beforeend