Skip to content

Commit 0992c2f

Browse files
chore: Update auto-publish.yml: Use actions/checkout@v4
SHA: 976639b Reason: push, by plehegar Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ebd1cbc commit 0992c2f

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
55
<title>Secure Payment Confirmation</title>
66
<meta content="ED" name="w3c-status">
7-
<meta content="Bikeshed version 47d87adb7, updated Tue Feb 18 17:18:43 2025 -0800" name="generator">
7+
<meta content="Bikeshed version b25686b9f, updated Fri Mar 14 14:15:20 2025 -0700" name="generator">
88
<link href="https://www.w3.org/TR/secure-payment-confirmation/" rel="canonical">
9-
<meta content="d095e268f9bacddeb1f0d1391382610bc9857b22" name="revision">
9+
<meta content="976639b9f668962be53251971469fbcd187fe210" name="revision">
1010
<meta content="dark light" name="color-scheme">
1111
<style>/* Boilerplate: style-autolinks */
1212
.css.css, .property.property, .descriptor.descriptor {
@@ -832,7 +832,7 @@
832832
<div class="head">
833833
<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>
834834
<h1 class="p-name no-ref" id="title">Secure Payment Confirmation</h1>
835-
<p id="w3c-state"><a href="https://www.w3.org/standards/types/#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2025-02-19">19 February 2025</time></p>
835+
<p id="w3c-state"><a href="https://www.w3.org/standards/types/#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2025-04-02">2 April 2025</time></p>
836836
<details open>
837837
<summary>More details about this document</summary>
838838
<div data-fill-with="spec-metadata">
@@ -3747,7 +3747,12 @@ <h2 class="no-num no-ref heading settled" id="idl-index"><span class="content">I
37473747
function showRefHint(link) {
37483748
if(link.classList.contains("dfn-link")) return;
37493749
const url = link.getAttribute("href");
3750-
const ref = refsData[url];
3750+
const refHintKey = link.getAttribute("data-refhint-key");
3751+
let key = url;
3752+
if(refHintKey) {
3753+
key = refHintKey + "_" + url;
3754+
}
3755+
const ref = refsData[key];
37513756
if(!ref) return;
37523757

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

0 commit comments

Comments
 (0)