forked from WICG/webpackage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a boilerplate for subresource-loading spec WICG#708
This is just a starting boilerplate of subresource-loading spec, tracked in WICG#708. Also updates GitHub workflow to know whether we can generate *.html from *.bs correctly or not.
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ pulls.json | |
draft-yasskin-dispatch-web-packaging.xml | ||
/lib | ||
loading.html | ||
subresource-loading.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<pre class="metadata"> | ||
Title: Subresource Loading with WebBundles | ||
Shortname: web-package-subresource-loading | ||
Level: none | ||
Status: CG-DRAFT | ||
Group: WICG | ||
Repository: WICG/webpackage | ||
URL: https://wicg.github.io/webpackage/subresource-loading.html | ||
Editor: Hayato Ito, Google Inc. https://google.com/, [email protected] | ||
Abstract: How UAs load subresources from Web Bundles. | ||
Complain About: accidental-2119 yes, missing-example-ids yes | ||
Markup Shorthands: markdown yes, css no | ||
Assume Explicit For: yes | ||
</pre> | ||
<pre class="link-defaults"> | ||
spec:fetch; type:dfn; for:/; text:response | ||
spec:html; type:element; text:link | ||
</pre> | ||
|
||
<section class="non-normative"> | ||
|
||
# Introduction # {#intro} | ||
|
||
<em>This section is non-normative.</em> | ||
|
||
The Subresource Loading with Web Bundles specification describes a way to load a | ||
large number of resources efficiently using a format that allows a format that | ||
allows multiple resources to be bundled, | ||
[Web Bundles](https://web.dev/web-bundles/). This specification describes how | ||
web browsers load those resources. It is expressed as several monkeypatches to | ||
the [[HTML]] and [[FETCH]] specification which call algorithms defined here. | ||
|
||
<p class="note"> | ||
This specification is under construct. See | ||
<a href="https://github.com/WICG/webpackage/issues/708">#708</a>. | ||
</p> |