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

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
O
OpenAI News
AI
AI
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
H
Heimdal Security Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Recent Commits to openclaw:main
Recent Commits to openclaw:main
T
Threat Research - Cisco Blogs
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
Cyberwarzone
Cyberwarzone
博客园 - 【当耐特】
TaoSecurity Blog
TaoSecurity Blog
The Cloudflare Blog
V
Visual Studio Blog
Forbes - Security
Forbes - Security
Apple Machine Learning Research
Apple Machine Learning Research
Spread Privacy
Spread Privacy
L
LINUX DO - 最新话题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
K
Kaspersky official blog
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
The Last Watchdog
The Last Watchdog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
Cisco Talos Blog
Cisco Talos Blog
Security Latest
Security Latest
量子位
W
WeLiveSecurity
V
V2EX
L
Lohrmann on Cybersecurity
S
Security @ Cisco Blogs
小众软件
小众软件
The Hacker News
The Hacker News
阮一峰的网络日志
阮一峰的网络日志
H
Hacker News: Front Page
博客园 - 聂微东
T
Troy Hunt's Blog
S
Schneier on Security
有赞技术团队
有赞技术团队
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
Webroot Blog
Webroot Blog
P
Privacy International News Feed
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Recent Commits to webidl:main

Editorial: use CreateBuiltinFunction for more built-in function objects · whatwg/webidl@9769865 Editorial: use CreateBuiltinFunction for (async) iterator return and … · whatwg/webidl@29fb50e 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: update PropertyDescriptor [[Get]]/[[Set]] to [[Getter]]/[[… · whatwg/webidl@fad9b4c
linusg · 2026-07-03 · via Recent Commits to webidl:main
Original file line numberDiff line numberDiff line change

@@ -12332,7 +12332,7 @@ in which case they are exposed on every object that [=implements=] the interface

1233212332

returns <emu-val>undefined</emu-val> if |attr| is [=read only=].

1233312333

1. Let |configurable| be <emu-val>false</emu-val> if |attr| is [=unforgeable=]

1233412334

and <emu-val>true</emu-val> otherwise.

12335-

1. Let |desc| be the PropertyDescriptor{\[[Get]]: |getter|, \[[Set]]: |setter|,

12335+

1. Let |desc| be the PropertyDescriptor{\[[Getter]]: |getter|, \[[Setter]]: |setter|,

1233612336

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

1233712337

1. Let |id| be |attr|'s [=identifier=].

1233812338

1. Perform [=!=] <a abstract-op>DefinePropertyOrThrow</a>(|target|, |id|, |desc|).

@@ -13293,7 +13293,7 @@ There must exist a <code class="idl">size</code> property on

1329313293

with the following characteristics:

1329413294
1329513295

* The property has attributes

13296-

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

13296+

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

1329713297

where |G| is the interface's <dfn id="dfn-map-size-getter" export>map size getter</dfn>,

1329813298

defined below.

1329913299

* <div algorithm="to invoke the size method of Maps">

@@ -13565,7 +13565,7 @@ A <code class="idl">size</code> property must exist on

1356513565

|A|'s [=interface prototype object=]

1356613566

with the following characteristics:

1356713567
13568-

* The property has attributes { \[[Get]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },

13568+

* The property has attributes { \[[Getter]]: |G|, \[[Enumerable]]: <emu-val>true</emu-val>, \[[Configurable]]: <emu-val>true</emu-val> },

1356913569

where |G| is the interface's <dfn id="dfn-set-size-getter" export>set size getter</dfn>,

1357013570

defined below.

1357113571

* <div algorithm="to invoke the size method of Sets">