Skip to content

Commit 6104914

Browse files
Update explainer with privacy commitments (#109)
SHA: 66d811b Reason: push, by drubery Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f006f20 commit 6104914

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

index.html

+9-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
<title>Device Bound Session Credentials</title>
66
<meta content="ED" name="w3c-status">
77
<link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet">
8-
<meta content="Bikeshed version f5998b114, updated Tue Feb 18 08:22:15 2025 -0800" name="generator">
8+
<meta content="Bikeshed version 60c422380, updated Thu Feb 20 19:11:22 2025 -0800" name="generator">
99
<link href="https://w3c.github.io/webappsec-dbsc/" rel="canonical">
10-
<meta content="0edf8f74d287c1b02b895b5b426381a826f2b711" name="revision">
10+
<meta content="66d811b6783b629bdfd8c228cd2b7e811408b9e1" name="revision">
1111
<meta content="dark light" name="color-scheme">
1212
<link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css">
1313
<style>/* Boilerplate: style-autolinks */
@@ -733,7 +733,7 @@
733733
<div class="head">
734734
<p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p>
735735
<h1 class="p-name no-ref" id="title">Device Bound Session Credentials</h1>
736-
<p id="w3c-state"><a href="https://www.w3.org/standards/types/#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2025-02-18">18 February 2025</time></p>
736+
<p id="w3c-state"><a href="https://www.w3.org/standards/types/#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2025-03-04">4 March 2025</time></p>
737737
<details open>
738738
<summary>More details about this document</summary>
739739
<div data-fill-with="spec-metadata">
@@ -2393,7 +2393,12 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N
23932393
function showRefHint(link) {
23942394
if(link.classList.contains("dfn-link")) return;
23952395
const url = link.getAttribute("href");
2396-
const ref = refsData[url];
2396+
const refHintKey = link.getAttribute("data-refhint-key");
2397+
let key = url;
2398+
if(refHintKey) {
2399+
key = refHintKey + "_" + url;
2400+
}
2401+
const ref = refsData[key];
23972402
if(!ref) return;
23982403

23992404
hideAllRefHints(); // Only display one at this time.

0 commit comments

Comments
 (0)