Skip to content

Commit

Permalink
Synchronize with BCD v5.6.12 (mdn#36621)
Browse files Browse the repository at this point in the history
Co-authored-by: OnkarRuikar <[email protected]>
  • Loading branch information
OnkarRuikar and OnkarRuikar authored Nov 2, 2024
1 parent 3ef83ce commit 1ea99c8
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 13 deletions.
4 changes: 3 additions & 1 deletion files/en-us/web/api/htmlelement/autocorrect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "HTMLElement: autocorrect property"
short-title: autocorrect
slug: Web/API/HTMLElement/autocorrect
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.HTMLElement.autocorrect
---

{{APIRef("HTML DOM")}}
{{APIRef("HTML DOM")}}{{SeeCompatTable}}

The **`autocorrect`** property of the {{domxref("HTMLElement")}} interface controls whether or not user text input is automatically corrected for spelling and/or punctuation errors.

Expand Down
2 changes: 1 addition & 1 deletion files/en-us/web/api/htmlelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ _Also inherits properties from its parent, {{DOMxRef("Element")}}._
- : A string that represents the element's capitalization behavior for user input. Valid values are: `none`, `off`, `on`, `characters`, `words`, `sentences`.
- {{domxref("HTMLElement.autofocus")}}
- : A boolean value reflecting the [`autofocus`](/en-US/docs/Web/HTML/Element/select#autofocus) HTML global attribute, which indicates whether the control should be focused when the page loads, or when dialog or popover become shown if specified in an element inside {{htmlelement("dialog")}} elements or elements whose popover attribute is set.
- {{domxref("HTMLElement.autocorrect")}}
- {{domxref("HTMLElement.autocorrect")}} {{experimental_inline}}
- : A boolean that represents whether or not text input by a user should be automatically corrected.
This reflects the [`autocorrect`](/en-US/docs/Web/HTML/Global_attributes/autocorrect) HTML global attribute.
- {{DOMxRef("HTMLElement.contentEditable")}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "RTCIceCandidatePairStats: bytesDiscardedOnSend property"
short-title: bytesDiscardedOnSend
slug: Web/API/RTCIceCandidatePairStats/bytesDiscardedOnSend
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.RTCStatsReport.type_candidate-pair.bytesDiscardedOnSend
---

{{APIRef("WebRTC")}}
{{APIRef("WebRTC")}}{{SeeCompatTable}}

The **`bytesDiscardedOnSend`** property of the {{domxref("RTCIceCandidatePairStats")}} dictionary indicates the total number of bytes discarded due to socket errors.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "RTCIceCandidatePairStats: consentRequestsSent property"
short-title: consentRequestsSent
slug: Web/API/RTCIceCandidatePairStats/consentRequestsSent
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.RTCStatsReport.type_candidate-pair.consentRequestsSent
---

{{APIRef("WebRTC")}}
{{APIRef("WebRTC")}}{{SeeCompatTable}}

The **`consentRequestsSent`** property of the {{domxref("RTCIceCandidatePairStats")}} dictionary indicates the total number of consent requests sent on this candidate pair.

Expand Down
10 changes: 5 additions & 5 deletions files/en-us/web/api/rtcicecandidatepairstats/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ The statistics can be obtained by iterating the {{domxref("RTCStatsReport")}} re
- : A number representing the approximate available outbound capacity of the network.
This reports the total number of bits per second available for all of the candidate pair's outgoing {{Glossary("RTP")}} streams.
It does not take into account the size of the IP overhead, nor any other transport layers such as {{Glossary("TCP")}} or {{Glossary("UDP")}}.
- {{domxref("RTCIceCandidatePairStats/bytesDiscardedOnSend", "bytesDiscardedOnSend")}} {{optional_inline}}
- {{domxref("RTCIceCandidatePairStats/bytesDiscardedOnSend", "bytesDiscardedOnSend")}} {{optional_inline}} {{experimental_inline}}
- : An integer representing the total number of bytes discarded due to socket errors on this candidate pair.
- {{domxref("RTCIceCandidatePairStats/bytesReceived", "bytesReceived")}} {{optional_inline}}
- : An integer representing the total number of payload bytes received on this candidate pair.
- {{domxref("RTCIceCandidatePairStats.bytesSent", "bytesSent")}} {{optional_inline}}
- : An integer representing the total number of payload bytes sent on this candidate pair (the total number of bytes sent excluding any headers, padding, or other protocol overhead).
- {{domxref("RTCIceCandidatePairStats/consentRequestsSent", "consentRequestsSent")}} {{optional_inline}}
- {{domxref("RTCIceCandidatePairStats/consentRequestsSent", "consentRequestsSent")}} {{optional_inline}} {{experimental_inline}}
- : An integer representing the total number of [STUN](/en-US/docs/Web/API/WebRTC_API/Protocols#stun) consent requests sent on this candidate pair.
- {{domxref("RTCIceCandidatePairStats.currentRoundTripTime", "currentRoundTripTime")}} {{optional_inline}}
- : A number representing the total time, in seconds, that elapsed between the most recently-sent STUN request and the response being received.
Expand All @@ -40,11 +40,11 @@ The statistics can be obtained by iterating the {{domxref("RTCStatsReport")}} re
- : A string representing the unique ID corresponding to the {{domxref("RTCIceCandidate")}} from the data included in the {{domxref("RTCIceCandidateStats")}} object providing statistics for the candidate pair's local candidate.
- {{domxref("RTCIceCandidatePairStats.nominated", "nominated")}} {{optional_inline}}
- : A Boolean value which, if `true`, indicates that the candidate pair described by this object is one which has been proposed for use, and will be (or was) used if its priority is the highest among the nominated candidate pairs. See {{RFC(5245, "", "7.1.3.2.4")}} for details.
- {{domxref("RTCIceCandidatePairStats/packetsDiscardedOnSend", "packetsDiscardedOnSend")}} {{optional_inline}}
- {{domxref("RTCIceCandidatePairStats/packetsDiscardedOnSend", "packetsDiscardedOnSend")}} {{optional_inline}} {{experimental_inline}}
- : An integer representing the total number of packets discarded due to socket errors on this candidate pair.
- {{domxref("RTCIceCandidatePairStats/packetsReceived", "packetsReceived")}} {{optional_inline}}
- {{domxref("RTCIceCandidatePairStats/packetsReceived", "packetsReceived")}} {{optional_inline}} {{experimental_inline}}
- : An integer representing the total number of packets received on this candidate pair.
- {{domxref("RTCIceCandidatePairStats/packetsSent", "packetsSent")}} {{optional_inline}}
- {{domxref("RTCIceCandidatePairStats/packetsSent", "packetsSent")}} {{optional_inline}} {{experimental_inline}}
- : An integer representing the total number of packets sent on this candidate pair.
- {{domxref("RTCIceCandidatePairStats.remoteCandidateId", "remoteCandidateId")}} {{optional_inline}}
- : A string containing a unique ID corresponding to the remote candidate from which data was taken to construct the `RTCIceCandidateStats` object describing the remote end of the connection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "RTCIceCandidatePairStats: packetsDiscardedOnSend property"
short-title: packetsDiscardedOnSend
slug: Web/API/RTCIceCandidatePairStats/packetsDiscardedOnSend
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.RTCStatsReport.type_candidate-pair.packetsDiscardedOnSend
---

{{APIRef("WebRTC")}}
{{APIRef("WebRTC")}}{{SeeCompatTable}}

The **`packetsDiscardedOnSend`** property of the {{domxref("RTCIceCandidatePairStats")}} dictionary indicates the total number of packets discarded due to socket errors

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "RTCIceCandidatePairStats: packetsReceived property"
short-title: packetsReceived
slug: Web/API/RTCIceCandidatePairStats/packetsReceived
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.RTCStatsReport.type_candidate-pair.packetsReceived
---

{{APIRef("WebRTC")}}
{{APIRef("WebRTC")}}{{SeeCompatTable}}

The **`packetsReceived`** property of the {{domxref("RTCIceCandidatePairStats")}} dictionary indicates the total number of packets received on the candidate pair.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ title: "RTCIceCandidatePairStats: packetsSent property"
short-title: packetsSent
slug: Web/API/RTCIceCandidatePairStats/packetsSent
page-type: web-api-instance-property
status:
- experimental
browser-compat: api.RTCStatsReport.type_candidate-pair.packetsSent
---

{{APIRef("WebRTC")}}
{{APIRef("WebRTC")}}{{SeeCompatTable}}

The **`packetsSent`** property of the {{domxref("RTCIceCandidatePairStats")}} dictionary indicates the total number of packets sent on the candidate pair.

Expand Down
4 changes: 3 additions & 1 deletion files/en-us/web/html/global_attributes/autocorrect/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
title: autocorrect
slug: Web/HTML/Global_attributes/autocorrect
page-type: html-attribute
status:
- experimental
browser-compat: html.global_attributes.autocorrect
---

{{HTMLSidebar("Global_attributes")}}
{{HTMLSidebar("Global_attributes")}}{{SeeCompatTable}}

The **`autocorrect`** [global attribute](/en-US/docs/Web/HTML/Global_attributes) is an [enumerated](/en-US/docs/Glossary/Enumerated) attribute that controls whether editable text is automatically corrected for spelling and/or punctuation errors.

Expand Down

0 comments on commit 1ea99c8

Please sign in to comment.