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

推荐订阅源

Martin Fowler
Martin Fowler
L
LINUX DO - 最新话题
P
Proofpoint News Feed
Cyberwarzone
Cyberwarzone
Know Your Adversary
Know Your Adversary
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
L
Lohrmann on Cybersecurity
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Security Latest
Security Latest
T
The Exploit Database - CXSecurity.com
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
P
Privacy & Cybersecurity Law Blog
K
Kaspersky official blog
The Last Watchdog
The Last Watchdog
Webroot Blog
Webroot Blog
Scott Helme
Scott Helme
T
Threat Research - Cisco Blogs
C
Cyber Attacks, Cyber Crime and Cyber Security
WordPress大学
WordPress大学
L
LINUX DO - 热门话题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
V
Visual Studio Blog
O
OpenAI News
AI
AI
Hacker News: Ask HN
Hacker News: Ask HN
V2EX - 技术
V2EX - 技术
GbyAI
GbyAI
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Simon Willison's Weblog
Simon Willison's Weblog
S
Schneier on Security
Spread Privacy
Spread Privacy
Y
Y Combinator Blog
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
F
Fortinet All Blogs
C
CERT Recently Published Vulnerability Notes
T
The Blog of Author Tim Ferriss
C
Check Point Blog
Apple Machine Learning Research
Apple Machine Learning Research
有赞技术团队
有赞技术团队
人人都是产品经理
人人都是产品经理
N
News and Events Feed by Topic
Project Zero
Project Zero
小众软件
小众软件
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
B
Blog
G
Google Developers 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.