Skip to content

Commit

Permalink
Merge branch 'main' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
dontcallmedom committed Dec 11, 2023
2 parents 0493375 + 35e0ca5 commit 957f84e
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 31 deletions.
7 changes: 7 additions & 0 deletions amendments.json
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,13 @@
"web-platform-tests/wpt#41663"
],
"id": 39
},
{
"description": "Change the default value of binaryType",
"pr": 2913,
"type": "correction",
"status": "candidate",
"id": 40
}
]
}
54 changes: 27 additions & 27 deletions respec-w3c-common.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions webrtc.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
2011 done by the W3C WebRTC Working Group are under the following
<a href='https://www.w3.org/Consortium/Legal/ipr-notice#Copyright'>Copyright</a>:<br>

<a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2011-2023 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
<a href="https://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2011-2023 <a href="https://www.w3.org/">World Wide Web Consortium</a>. <abbr title="World Wide Web Consortium">W3C</abbr><sup>®</sup> <a href="https://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="https://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href="https://www.w3.org/copyright/software-license/">permissive document license</a> rules apply.</p>

<section id="abstract">
<p>
Expand Down Expand Up @@ -12167,7 +12167,7 @@ <h3>
When the [= ICE Agent =] indicates that an {{RTCIceTransport}} has
changed either the selected candidate pair, the
{{RTCIceTransportState}} or both, the user agent MUST queue a task
that runs the following steps:
that runs the steps to <dfn class="export" data-dfn-for="RTCIceTransport">change the selected candidate pair and state</dfn>:
</p>
<ol class=algorithm>
<li class="no-test-needed">
Expand Down Expand Up @@ -14445,7 +14445,7 @@ <h2>
"RTCPeerConnection-createDataChannel.html">When an
{{RTCDataChannel}} object is created, the
{{binaryType}} attribute MUST be initialized
to the string {{BinaryType/"blob"}}.</span>
to the string {{BinaryType/"arraybuffer"}}.</span>
</p>
<p>
This attribute controls how binary data is exposed to
Expand Down
2 changes: 1 addition & 1 deletion webrtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ var respecConfig = {
el.appendChild(document.createTextNode(" ("));
jsepSections.forEach(function (s, i) {
var sectionLink = document.createElement("a");
sectionLink.href = "https://datatracker.ietf.org/doc/html/rfc8829#section-" + s.slice(0, s.length - 1);
sectionLink.href = "https://www.rfc-editor.org/rfc/rfc8829#section-" + s.slice(0, s.length - 1);
sectionLink.textContent = "section " + s;
if (i > 0) {
if (i == jsepSections.length - 1) {
Expand Down

0 comments on commit 957f84e

Please sign in to comment.