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

推荐订阅源

Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
LangChain Blog
月光博客
月光博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
博客园_首页
T
Tailwind CSS Blog
P
Proofpoint News Feed
雷峰网
雷峰网
D
Darknet – Hacking Tools, Hacker News & Cyber Security
IT之家
IT之家
V
Vulnerabilities – Threatpost
阮一峰的网络日志
阮一峰的网络日志
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs
S
Schneier on Security
Security Archives - TechRepublic
Security Archives - TechRepublic
L
Lohrmann on Cybersecurity
V
Visual Studio Blog
云风的 BLOG
云风的 BLOG
WordPress大学
WordPress大学
The Register - Security
The Register - Security
N
Netflix TechBlog - Medium
Hugging Face - Blog
Hugging Face - Blog
Project Zero
Project Zero
博客园 - 叶小钗
F
Full Disclosure
大猫的无限游戏
大猫的无限游戏
Latest news
Latest news
S
SegmentFault 最新的问题
C
Cyber Attacks, Cyber Crime and Cyber Security
Google Online Security Blog
Google Online Security Blog
Recorded Future
Recorded Future
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hacker News - Newest:
Hacker News - Newest: "LLM"
腾讯CDC
L
LINUX DO - 最新话题
Google DeepMind News
Google DeepMind News
P
Privacy International News Feed
I
InfoQ
F
Fortinet All Blogs
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
Threatpost
T
Tenable Blog
B
Blog RSS Feed

Recent Commits to web-share-target:main

Refactor: remove WebIDL (#106) · w3c/web-share-target@72dd80f Possibility of transferring user id (#100) · w3c/web-share-target@0782f1a chore: use group option in config · w3c/web-share-target@fadadfb chore: use main branch in config · w3c/web-share-target@a7a06ec Editorial: reference Encoding's 'UTF-8' directly (#96) · w3c/web-share-target@a703396 chore: migrate to WebApps WG (#95) · w3c/web-share-target@6025309 Accessibility considerations (#88) · w3c/web-share-target@93bf095 editorial: link to urlencoded serializer (#92) · w3c/web-share-target@a8d4a5d chore: cleanup some ReSpec usage (#91) · w3c/web-share-target@b27e5a8 Update w3c.json · w3c/web-share-target@41b27b5 Long share requests may truncate with GET (#82) · w3c/web-share-target@dd4e83f Encourage redirect after POST (#80) · w3c/web-share-target@0d9d25f Remove 'early draft' wording (#79) · w3c/web-share-target@fc831cb Skip bad files entries and make accept required (#78) · w3c/web-share-target@83a63b0 Validate enctype when method is GET (#72) · w3c/web-share-target@4078bc4 Support file sharing (#53) · w3c/web-share-target@76eabad [web-share-target] Introduce Level 2 Spec (#71) · w3c/web-share-target@a5f4eb2 Mention plan for sharing files (#65) · w3c/web-share-target@3fccfd1 Retire links to Interface document (#62) · w3c/web-share-target@5279a5a
Potentially trustworthy origins (#69) · w3c/web-share-target@b3c4d76
ewilligers · 2018-08-30 · via Recent Commits to web-share-target:main

This repository was archived by the owner on Jun 30, 2026. It is now read-only.

File tree

Original file line numberDiff line numberDiff line change

@@ -285,12 +285,10 @@ <h3>

285285

</p>

286286

<p>

287287

A <dfn data-lt="web share targets">web share target</dfn> is a web

288-

site in a <a data-cite="!SECURE-CONTEXTS#secure-context">secure

289-

context</a> with a valid manifest containing a <a>share_target</a>

290-

member. A web share target is a type of <a data-cite=

288+

site with a valid manifest containing a <a>share_target</a> member. A

289+

web share target is a type of <a data-cite=

291290

"!WebShare#dfn-share-target">share target</a>.

292291

</p>

293-

<div class="issue" data-number="27"></div>

294292

<p>

295293

The steps for <dfn>post-processing the <code>share_target</code>

296294

member</dfn> is given by the following algorithm. The algorithm takes

@@ -341,6 +339,13 @@ <h3>

341339

"!appmanifest#dfn-navigation-scope">navigation scope</a> , and

342340

return <code>undefined</code>.

343341

</li>

342+

<li>If the <a data-cite="!URL#concept-url-origin">origin</a> of <var>

343+

action</var> is not <a data-cite=

344+

"!SECURE-CONTEXTS/#is-origin-trustworthy">potentially

345+

trustworthy</a>, <a data-cite=

346+

"!appmanifest#dfn-issue-a-developer-warning">issue a developer

347+

warning</a> and return <code>undefined</code>.

348+

</li>

344349

<li>Set <var>share target</var>["<a data-link-for=

345350

"ShareTarget">action</a>"] to <var>action</var>.

346351

</li>

@@ -662,10 +667,11 @@ <h2>

662667

from an online index, rather than a set of targets that the end user

663668

has explicitly installed or registered.

664669

</li>

665-

<li>The requirement that the web share target be a <a data-cite=

666-

"SECURE-CONTEXTS#secure-context">secure context</a> is to prevent

667-

private user data from being transmitted to a party that does not

668-

control the origin in question, or in clear text over the network.

670+

<li>The requirement that the web share target's origin be

671+

<a data-cite="SECURE-CONTEXTS/#is-origin-trustworthy">potentially

672+

trustworthy</a> is to prevent private user data from being

673+

transmitted to a party that does not control the origin in question,

674+

or in clear text over the network.

669675

</li>

670676

</ul>

671677

</section>