From efdd183a1d9b5a9cd7e9cff184a8499b7633930e Mon Sep 17 00:00:00 2001 From: Yoshisato Yanagisawa Date: Tue, 14 Mar 2023 09:28:57 +0000 Subject: [PATCH 1/3] Export "listener" and "event handler map". --- source | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source b/source index c31a12cd65e..1ffe9b67c88 100644 --- a/source +++ b/source @@ -102024,7 +102024,7 @@ import "https://example.com/foo/../module2.mjs"; handler's value must be set to null.

-
  • a listener, which is either null or an +

  • a listener, which is either null or an event listener responsible for running the event handler processing algorithm. Initially, an event handler's listener must be @@ -102097,7 +102097,7 @@ import "https://example.com/foo/../module2.mjs";


    Each EventTarget object that has one or more event handlers specified - has an associated event handler map, which is a map + has an associated event handler map, which is a map of strings representing names of event handlers to event handlers.

    From 984bc800b770c3a903ddebd8a2bbaffb0c589bd2 Mon Sep 17 00:00:00 2001 From: Yoshisato Yanagisawa Date: Tue, 14 Mar 2023 23:56:11 +0000 Subject: [PATCH 2/3] applied wrapping. --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index 1ffe9b67c88..ef3a8a3aeca 100644 --- a/source +++ b/source @@ -102097,9 +102097,9 @@ import "https://example.com/foo/../module2.mjs";

    Each EventTarget object that has one or more event handlers specified - has an associated event handler map, which is a map - of strings representing names of event - handlers to event handlers.

    + has an associated event handler map, which is a map of strings representing names of + event handlers to event handlers.

    When an EventTarget object that has one or more event handlers specified is created, its event handler map must be initialized such that it contains From 3442ad8f1224b4bdf1cd0ede54a208c1e4303859 Mon Sep 17 00:00:00 2001 From: Yoshisato Yanagisawa Date: Thu, 16 Mar 2023 05:13:07 +0000 Subject: [PATCH 3/3] Add for=... --- source | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source b/source index ef3a8a3aeca..7582eec610f 100644 --- a/source +++ b/source @@ -102024,9 +102024,9 @@ import "https://example.com/foo/../module2.mjs"; handler's value must be set to null.

  • -
  • a listener, which is either null or an - event listener responsible for running the event handler - processing algorithm. Initially, an listener, which is + either null or an event listener responsible for running the + event handler processing algorithm. Initially, an event handler's listener must be set to null.

  • @@ -102097,9 +102097,9 @@ import "https://example.com/foo/../module2.mjs";

    Each EventTarget object that has one or more event handlers specified - has an associated event handler map, which is a map of strings representing names of - event handlers to event handlers.

    + has an associated event handler map, which is a map of strings representing names of event handlers to event handlers.

    When an EventTarget object that has one or more event handlers specified is created, its event handler map must be initialized such that it contains