Skip to content

Commit

Permalink
Add privacy and security self review questionnaire (#5)
Browse files Browse the repository at this point in the history
SHA: 699daf7
Reason: push, by alexnj

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
alexnj and github-actions[bot] committed Nov 13, 2024
1 parent d0cd417 commit 8eac44d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<title>expect-no-linked-resources</title>
<meta content="w3c/UD" name="w3c-status">
<meta content="UD" name="w3c-status">
<link href="https://www.w3.org/StyleSheets/TR/2021/W3C-UD" rel="stylesheet">
<meta content="Bikeshed version 6270e4735, updated Tue Aug 6 12:12:30 2024 -0700" name="generator">
<meta content="Bikeshed version 742f3d674, updated Mon Nov 4 14:56:54 2024 -0800" name="generator">
<link href="https://explainers-by-googlers.github.io/expect-no-linked-resources" rel="canonical">
<link href="https://www.w3.org/2008/site/images/favicon.ico" rel="icon">
<meta content="5e4c36782101043447ac6877cf833c9ec1cfb973" name="revision">
<meta content="699daf7d046bfe9721335eff4e84bf2118d87a53" name="revision">
<meta content="dark light" name="color-scheme">
<link href="https://www.w3.org/StyleSheets/TR/2021/dark.css" media="(prefers-color-scheme: dark)" rel="stylesheet" type="text/css">
<style>/* Boilerplate: style-autolinks */
Expand Down Expand Up @@ -707,7 +707,7 @@
<div class="head">
<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>
<h1 class="p-name no-ref" id="title">expect-no-linked-resources</h1>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#UD">Unofficial Proposal Draft</a>, <time class="dt-updated" datetime="2024-09-09">9 September 2024</time></p>
<p id="w3c-state"><a href="https://www.w3.org/standards/types/#UD">Unofficial Proposal Draft</a>, <time class="dt-updated" datetime="2024-11-13">13 November 2024</time></p>
<details open>
<summary>More details about this document</summary>
<div data-fill-with="spec-metadata">
Expand Down Expand Up @@ -1422,17 +1422,19 @@ <h3 class="no-num no-ref heading settled" id="normative"><span class="content">N
"use strict";
{
let refsData = {
"https://dom.spec.whatwg.org/#concept-document": {"export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"document","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-document"},
"https://dom.spec.whatwg.org/#concept-document": {"displayText":"document","export":true,"for_":[],"level":"1","normative":true,"shortname":"dom","spec":"dom","status":"current","text":"document","type":"dfn","url":"https://dom.spec.whatwg.org/#concept-document"},
};

function mkRefHint(link, ref) {
const linkText = link.textContent;
let dfnTextElements = '';
if (ref.text != linkText) {
if (ref.displayText.toLowerCase() != linkText.toLowerCase()) {
// Give the original term if it's being displayed in a different way.
// But allow casing differences, they're insignificant.
dfnTextElements =
mk.li({},
mk.b({}, "Term: "),
mk.span({}, ref.text)
mk.span({}, ref.displayText)
);
}
const forList = ref.for_;
Expand Down

0 comments on commit 8eac44d

Please sign in to comment.