Skip to content

Commit

Permalink
Fix code point for '.' - it's U+002E not U+002D (#235)
Browse files Browse the repository at this point in the history
SHA: 44e1019
Reason: push, by ayuishii

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
inexorabletash and github-actions[bot] committed Jul 15, 2024
1 parent 4211c63 commit 7907cf3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<title>Cookie Store API</title>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport">
<link href="https://www.w3.org/StyleSheets/TR/2021/cg-draft" rel="stylesheet">
<meta content="Bikeshed version 4afc1fdf9, updated Tue May 28 15:43:17 2024 -0700" name="generator">
<meta content="Bikeshed version a1dabb26c, updated Mon Jun 17 15:00:44 2024 -0700" name="generator">
<link href="https://wicg.github.io/cookie-store/" rel="canonical">
<link href="logo-cookies.svg" rel="icon">
<meta content="dda009fea1bc5513fbc973a98376967b844a77a2" name="revision">
<meta content="44e1019a1d3e30c236f0f0438976b34011732dae" 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>
Expand Down Expand Up @@ -963,7 +963,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">Cookie Store API</h1>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#CG-DRAFT">Draft Community Group Report</a>, <time class="dt-updated" datetime="2024-06-07">7 June 2024</time></p>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#CG-DRAFT">Draft Community Group Report</a>, <time class="dt-updated" datetime="2024-07-15">15 July 2024</time></p>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down Expand Up @@ -2098,9 +2098,9 @@ <h3 class="heading settled" data-level="7.2" id="set-cookie-algorithm"><span cla
<p>If <var>domain</var> is not null, then run these steps:</p>
<ol>
<li data-md>
<p>If <var>domain</var> starts with U+002D (<code>.</code>), then return failure.</p>
<p>If <var>domain</var> starts with U+002E (<code>.</code>), then return failure.</p>
<li data-md>
<p>If <var>host</var> does not equal <var>domain</var> and <var>host</var> does not end with U+002D (<code>.</code>) followed by <var>domain</var>,
<p>If <var>host</var> does not equal <var>domain</var> and <var>host</var> does not end with U+002E (<code>.</code>) followed by <var>domain</var>,
then return failure.</p>
<li data-md>
<p>Let <var>encodedDomain</var> be the result of <a data-link-type="dfn" href="https://encoding.spec.whatwg.org/#utf-8-encode" id="ref-for-utf-8-encode②">UTF-8 encoding</a> <var>domain</var>.</p>
Expand Down

0 comments on commit 7907cf3

Please sign in to comment.