Date: Wed, 29 Jan 2025 11:07:08 +0100
Subject: [PATCH 4/5] fixup! fix: remove stray semicolons
---
index.bs | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/index.bs b/index.bs
index 3bb5aef0..d81f5250 100644
--- a/index.bs
+++ b/index.bs
@@ -1712,7 +1712,7 @@ session.UserPromptHandler = {
? confirm: session.UserPromptHandlerType,
? default: session.UserPromptHandlerType,
? prompt: session.UserPromptHandlerType,
-};
+}
The session.UserPromptHandler
type represents the configuration of
@@ -5809,7 +5809,7 @@ network.Cookie = {
sameSite: network.SameSite,
? expiry: js-uint,
Extensible,
-};
+}
The network.Cookie
type represents a cookie.
@@ -5863,7 +5863,7 @@ samesite-flag, which is from [[SAME-SITE-COOKIES]].
network.CookieHeader = {
name: text,
value: network.BytesValue,
-};
+}
The network.CookieHeader
type represents the subset of cookie data
@@ -5905,7 +5905,7 @@ network.FetchTimingInfo = {
responseStart: float,
responseEnd: float,
-};
+}
The network.FetchTimingInfo
type represents the time of each part
@@ -6031,7 +6031,7 @@ network.Initiator = {
? request: network.Request,
? stackTrace: script.StackTrace,
? type: "parser" / "script" / "preflight" / "other"
-};
+}
The network.Initiator
type represents the source of a network
@@ -6115,7 +6115,7 @@ network.RequestData = {
destination: text,
initiatorType: text / null,
timings: network.FetchTimingInfo,
-};
+}
The network.RequestData
type represents an ongoing network request.
@@ -6188,7 +6188,7 @@ To get the request data given |request|:
network.ResponseContent = {
size: js-uint
-};
+}
The network.ResponseContent
type represents the decoded response to
@@ -6224,7 +6224,7 @@ network.ResponseData = {
bodySize: js-uint / null,
content: network.ResponseContent,
?authChallenges: [*network.AuthChallenge],
-};
+}
The network.ResponseData
type represents the response to a network
@@ -7928,7 +7928,7 @@ used to send custom messages from the [=remote end=] to the [=local end=].
script.ChannelValue = {
type: "channel",
value: script.ChannelProperties,
-};
+}
script.ChannelProperties = {
channel: script.Channel,
@@ -7997,7 +7997,7 @@ script.ExceptionDetails = {
lineNumber: js-uint,
stackTrace: script.StackTrace,
text: text,
-};
+}
The script.ExceptionDetails
type represents a JavaScript exception.
@@ -9692,7 +9692,7 @@ To get the source given |source realm|:
script.RealmTarget = {
realm: script.Realm
-};
+}
script.ContextTarget = {
context: browsingContext.BrowsingContext,
From fc561947a4303ae2bdf3f36141630ec77ef056dc Mon Sep 17 00:00:00 2001
From: Claas Augner
Date: Wed, 29 Jan 2025 11:08:34 +0100
Subject: [PATCH 5/5] fixup! Remove extraneous group delimiter
---
index.bs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.bs b/index.bs
index d81f5250..bde78e22 100644
--- a/index.bs
+++ b/index.bs
@@ -1660,7 +1660,7 @@ session.ProxyConfiguration = {
session.DirectProxyConfiguration //
session.ManualProxyConfiguration //
session.PacProxyConfiguration //
- session.SystemProxyConfiguration //
+ session.SystemProxyConfiguration
}
session.AutodetectProxyConfiguration = (