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

推荐订阅源

博客园 - 【当耐特】
WordPress大学
WordPress大学
T
The Exploit Database - CXSecurity.com
博客园_首页
MyScale Blog
MyScale Blog
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
F
Full Disclosure
V
V2EX
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
P
Proofpoint News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
SecWiki News
SecWiki News
N
Netflix TechBlog - Medium
S
Secure Thoughts
酷 壳 – CoolShell
酷 壳 – CoolShell
Hacker News: Ask HN
Hacker News: Ask HN
爱范儿
爱范儿
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Webroot Blog
Webroot Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Martin Fowler
Martin Fowler
PCI Perspectives
PCI Perspectives
S
Security @ Cisco Blogs
Recorded Future
Recorded Future
Help Net Security
Help Net Security
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
AI
AI
Microsoft Azure Blog
Microsoft Azure Blog
K
Kaspersky official blog
G
GRAHAM CLULEY
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
CERT Recently Published Vulnerability Notes
U
Unit 42
T
Tor Project blog
Cloudbric
Cloudbric
Hacker News - Newest:
Hacker News - Newest: "LLM"
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
Security Latest
Security Latest
N
News and Events Feed by Topic
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO

Recent Commits to webidl:main

Editorial: update PropertyDescriptor [[Get]]/[[Set]] to [[Getter]]/[[… · whatwg/webidl@fad9b4c Editorial: use CreateBuiltinFunction for more built-in function objects · whatwg/webidl@9769865 Update DOMException language to reflect standardized stack accessor Editorial: note that Promise<T> arguments also accept T · whatwg/webidl@e1300e9 Review Draft Publication: March 2026 · whatwg/webidl@a652053 Meta: update repository files · whatwg/webidl@9db3040 Meta: update repository files · whatwg/webidl@9f8514a Meta: add two missing <tr> tags · whatwg/webidl@a6602fd Create an operation does not care about [LegacyLenientThis] · whatwg/webidl@4c55acb Add missing arguments for CreateBuiltinFunction · whatwg/webidl@fb0c9c9 Meta: export async_iterable · whatwg/webidl@25875a8 Review Draft Publication: September 2025 · whatwg/webidl@a79e69e Replace IsResizableArrayBuffer with IsFixedLengthArrayBuffer · whatwg/webidl@abc4414 Meta: link to Korean translations · whatwg/webidl@278f0bd Introduce new extended attribute grammars · whatwg/webidl@ef2df44 Upgrade QuotaExceededError to a DOMException derived interface Remove `async` as a keyword Do not throw if the attribute setter is called with no arguments · whatwg/webidl@909c3fe Change async_iterable<> type to async_sequence<> and async iterable<>…
Editorial: use CreateBuiltinFunction for (async) iterator return and … · whatwg/webidl@29fb50e
nicolo-ribau · 2026-06-22 · via Recent Commits to webidl:main
Original file line numberDiff line numberDiff line change

@@ -12946,7 +12946,8 @@ must be {{%Iterator.prototype%}}.

1294612946
1294712947

An [=iterator prototype object=] must have a <code class="idl">next</code> data property with attributes

1294812948

{ \[[Writable]]: <emu-val>true</emu-val>, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

12949-

and whose value is a [=built-in function object=] that behaves as follows:

12949+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|nextSteps|, 0, "<code>next</code>", « »),

12950+

where |nextSteps| is the following algorithm:

1295012951
1295112952

1. Let |interface| be the [=interface=] for which the

1295212953

[=iterator prototype object=] exists.

@@ -13119,7 +13120,8 @@ The \[[Prototype]] [=/internal slot=] of an [=asynchronous iterator prototype ob

1311913120

An [=asynchronous iterator prototype object=] must have a <code class="idl">next</code> data

1312013121

property with attributes { \[[Writable]]: <emu-val>true</emu-val>,

1312113122

\[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

13122-

and whose value is a [=built-in function object=] that behaves as follows:

13123+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|nextSteps|, 0, "<code>next</code>", « »),

13124+

where |nextSteps| is the following algorithm:

1312313125
1312413126

1. Let |interface| be the [=interface=] for which the

1312513127

[=asynchronous iterator prototype object=] exists.

@@ -13208,8 +13210,8 @@ The \[[Prototype]] [=/internal slot=] of an [=asynchronous iterator prototype ob

1320813210

[=asynchronous iterator prototype object=] must have a <code class="idl">return</code> data

1320913211

property with attributes { \[[Writable]]: <emu-val>true</emu-val>,

1321013212

\[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> }

13211-

and whose value is a [=built-in function object=], taking one argument |value|, that behaves as

13212-

follows:

13213+

and whose value is the [=built-in function object=] [$CreateBuiltinFunction$](|returnSteps|, 1, "<code>return</code>", « »),

13214+

where |returnSteps| is the following algorithm taking one argument |value|:

1321313215
1321413216

1. Let |interface| be the [=interface=] for which the

1321513217

[=asynchronous iterator prototype object=] exists.