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

推荐订阅源

N
News and Events Feed by Topic
GbyAI
GbyAI
博客园 - Franky
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
人人都是产品经理
人人都是产品经理
Microsoft Azure Blog
Microsoft Azure Blog
The Register - Security
The Register - Security
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
The Cloudflare Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
MongoDB | Blog
MongoDB | Blog
有赞技术团队
有赞技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
F
Full Disclosure
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Vercel News
Vercel News
博客园 - 【当耐特】
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
S
Schneier on Security
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Project Zero
Project Zero
量子位
M
MIT News - Artificial intelligence
Stack Overflow Blog
Stack Overflow Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
美团技术团队
Attack and Defense Labs
Attack and Defense Labs
C
Cybersecurity and Infrastructure Security Agency CISA
T
The Blog of Author Tim Ferriss
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
T
Troy Hunt's Blog
Google Online Security Blog
Google Online Security Blog
罗磊的独立博客
P
Proofpoint News Feed
Schneier on Security
Schneier on Security
Spread Privacy
Spread Privacy
S
SegmentFault 最新的问题
L
LINUX DO - 最新话题
Simon Willison's Weblog
Simon Willison's Weblog
爱范儿
爱范儿
博客园 - 聂微东
A
About on SuperTechFans
PCI Perspectives
PCI Perspectives
D
Docker

Recent Commits to xhr:main

Overwrite the charset parameter for URLSearchParams objects · whatwg/xhr@d375b28 Editorial: modernize prose · whatwg/xhr@fe6c5fe Meta: update repository files · whatwg/xhr@0822635 Reset request body when open() is called · whatwg/xhr@38e3f59 Review Draft Publication: August 2025 · whatwg/xhr@84b66b3 Meta: link Korean translation · whatwg/xhr@a170690 Meta: link Simplified Chinese translation · whatwg/xhr@f284317 Editorial: fix Bikeshed linking errors · whatwg/xhr@150a3b8 Meta: update link for fragment serialization algorithm · whatwg/xhr@f2f0397 Meta: adjust dfn-for of events on XMLHttpRequestEventTarget · whatwg/xhr@fd438ec Review Draft Publication: February 2024 · whatwg/xhr@fdd619d Meta: update repository files · whatwg/xhr@813e308 Meta: update repository files · whatwg/xhr@a2c40a0 Editorial: use HTML's encoding-parse a URL · whatwg/xhr@a5597b9 Review Draft Publication: February 2023 · whatwg/xhr@1cccb46 Add optional submitter argument to FormData constructor · whatwg/xhr@1c2d7f2 Align with Fetch's forbidden request-header refactor · whatwg/xhr@494431a Meta: my employer changed · whatwg/xhr@545cdd5 Meta: update repository files · whatwg/xhr@112c3bb
Allow doubles for ProgressEvent's loaded and total · whatwg/xhr@4a6401c
domenic · 2025-03-11 · via Recent Commits to xhr:main
Original file line numberDiff line numberDiff line change

@@ -1753,14 +1753,14 @@ interface ProgressEvent : Event {

17531753

constructor(DOMString type, optional ProgressEventInit eventInitDict = {});

17541754
17551755

readonly attribute boolean lengthComputable;

1756-

readonly attribute unsigned long long loaded;

1757-

readonly attribute unsigned long long total;

1756+

readonly attribute double loaded;

1757+

readonly attribute double total;

17581758

};

17591759
17601760

dictionary ProgressEventInit : EventInit {

17611761

boolean lengthComputable = false;

1762-

unsigned long long loaded = 0;

1763-

unsigned long long total = 0;

1762+

double loaded = 0;

1763+

double total = 0;

17641764

};

17651765

</pre>

17661766