惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Full Disclosure
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
Microsoft Azure Blog
Microsoft Azure Blog
The GitHub Blog
The GitHub Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Recorded Future
Recorded Future
Y
Y Combinator Blog
Cloudbric
Cloudbric
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
S
Schneier on Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
Cybersecurity and Infrastructure Security Agency CISA
TaoSecurity Blog
TaoSecurity Blog
Security Latest
Security Latest
N
News and Events Feed by Topic
Hacker News - Newest:
Hacker News - Newest: "LLM"
D
DataBreaches.Net
Security Archives - TechRepublic
Security Archives - TechRepublic
H
Hacker News: Front Page
C
Cisco Blogs
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
Recent Commits to openclaw:main
Recent Commits to openclaw:main
V
Vulnerabilities – Threatpost
L
LINUX DO - 最新话题
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
A
About on SuperTechFans
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Jina AI
Jina AI
C
CXSECURITY Database RSS Feed - CXSecurity.com
Schneier on Security
Schneier on Security
T
Tenable Blog
N
News and Events Feed by Topic
W
WeLiveSecurity
有赞技术团队
有赞技术团队
AI
AI
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Latest news
Latest news
T
The Blog of Author Tim Ferriss
S
Security Affairs
Know Your Adversary
Know Your Adversary
Simon Willison's Weblog
Simon Willison's Weblog
G
GRAHAM CLULEY
Google DeepMind News
Google DeepMind News
The Cloudflare Blog

Recent Commits to url:main

Report a validation error for IPv4 addresses from non-ASCII input Close more gaps between URL writing and parser sections Define valid IPv6-address string inline Valid domain needs to account for ending with a number Make relative-URL-with-fragment string account for opaque-path base URLs · whatwg/url@24deb59 Path segments can be empty · whatwg/url@1505976 Close gap between URL writing and parser sections Rename domain to ASCII to domain parser · whatwg/url@3c83874 Add Unicode ToASCII fallback for ASCII domains Meta: remove duplicate Alexis Hunt from acknowledgments · whatwg/url@9fe73be Editorial: fix minor markup and grammar inconsistencies · whatwg/url@6d83609 Meta: remove extra space in query definition · whatwg/url@afc0820 Editorial: add missing article before "hexadecimal number" · whatwg/url@91c807f Correct a couple minor issues Document invariants of percent-encode sets better · whatwg/url@dc66b3b Meta: update repository files · whatwg/url@8f0372b Meta: add pywhatwgurl to list of implementations · whatwg/url@b8936db Review Draft Publication: February 2026 Define the "extract an origin" operation · whatwg/url@b6b3251
Simplify ends in a number checker · whatwg/url@12c0c5c
annevk · 2026-07-01 · via Recent Commits to url:main
Original file line numberDiff line numberDiff line change

@@ -1099,22 +1099,19 @@ false), and then runs these steps. They return failure or a <a for=/>host</a>.

10991099

runs these steps. They return a boolean.

11001100
11011101

<ol>

1102+

<li><p>Assert: <var>input</var> is not the empty string.

1103+
11021104

<li><p>Let <var>parts</var> be the result of <a>strictly splitting</a> <var>input</var> on

11031105

U+002E (.).

11041106
1105-

<li>

1106-

<p>If the last <a for=list>item</a> in <var>parts</var> is the empty string, then:

1107-
1108-

<ol>

1109-

<li><p>If <var>parts</var>'s <a for=list>size</a> is 1, then return false.

1110-
1111-

<li><p><a for=list>Remove</a> the last <a for=list>item</a> from <var>parts</var>.

1112-

</ol>

1107+

<li><p>If the last <a for=list>item</a> in <var>parts</var> is the empty string, then

1108+

<a for=list>remove</a> the last <a for=list>item</a> from <var>parts</var>.

11131109
11141110

<li><p>Let <var>last</var> be the last <a for=list>item</a> in <var>parts</var>.

11151111
11161112

<li>

1117-

<p>If <var>last</var> is non-empty and contains only <a>ASCII digits</a>, then return true.

1113+

<p>If <var>last</var> is not the empty string and contains only <a>ASCII digits</a>, then return

1114+

true.

11181115
11191116

<p class=note>The erroneous input "<code>09</code>" will be caught by the <a>IPv4 parser</a> at a

11201117

later stage.