From ae7db6844fdb0748b497c2c87afff0dcfba24ab5 Mon Sep 17 00:00:00 2001 From: Jamie Mansfield Date: Mon, 22 Jul 2024 20:06:23 +0100 Subject: [PATCH] Make CompositionEvent.init take a Window rather than WindowProxy This matches all other initUIEvent methods, the existing parameter explanations of the spec, Firefox, and Chromium. --- sections/legacy-event-initializers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/legacy-event-initializers.txt b/sections/legacy-event-initializers.txt index 8545fa7..f95cf0e 100644 --- a/sections/legacy-event-initializers.txt +++ b/sections/legacy-event-initializers.txt @@ -307,7 +307,7 @@ described in this Appendix. undefined initCompositionEvent(DOMString typeArg, optional boolean bubblesArg = false, optional boolean cancelableArg = false, - optional WindowProxy? viewArg = null, + optional Window? viewArg = null, optional DOMString dataArg = ""); };