From 7b6874e5c5787899e64c2d2e3fc13caf47882013 Mon Sep 17 00:00:00 2001 From: Brandon Jones Date: Tue, 9 Apr 2024 14:07:40 -0700 Subject: [PATCH] Replace unnecessary use of FrozenArray in dictionaries --- index.bs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.bs b/index.bs index 388a1a27..c61c78df 100755 --- a/index.bs +++ b/index.bs @@ -2470,8 +2470,8 @@ interface XRInputSourcesChangeEvent : Event { dictionary XRInputSourcesChangeEventInit : EventInit { required XRSession session; - required FrozenArray<XRInputSource> added; - required FrozenArray<XRInputSource> removed; + required sequence<XRInputSource> added; + required sequence<XRInputSource> removed; }; @@ -3012,7 +3012,7 @@ Changes: - Mention that the opaque framebuffer holds a reference to a particular session (GitHub #1004) - Defer initial inputsourcechange event till after the promise resolves (GitHub #1002) - Documented the effects of the framebufferScaleFactor (GitHub #993) -- Allow depth&&stencil result if depth||stencil requested (GitHub #987) +- Allow depth&&stencil result if depth||stencil requested (GitHub #987) - Allow more flexibility in what isSessionSupported returns (GitHub #986) - Clarify when tracking/input data is exposed via inline devices (GitHub #985) - Add common sense restrictions on viewport shape (GitHub #976) @@ -3165,7 +3165,7 @@ Thank you to the following individuals for their contributions the WebXR Device * Klaus Weidner (Google) * Alan Jeffrey (Mozilla) * Diane Hosfelt (Mozilla) - * Kyungsuk (AT&T Xandr) + * Kyungsuk (AT&T Xandr) * David Dorwin (Google) * Trevor F. Smith (Transmutable) * Ada Rose Cannon (Samsung)