Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a boilerplate for subresource-loading spec #708 #709

Merged
merged 2 commits into from
Feb 17, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/spec-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,17 @@ jobs:
main:
name: Build, Validate and Deploy
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
include:
- source: loading.bs
- source: subresource-loading.bs
steps:
- uses: actions/checkout@v2
- uses: w3c/spec-prod@v2
with:
GH_PAGES_BRANCH: gh-pages
TOOLCHAIN: bikeshed
SOURCE: loading.bs
SOURCE: ${{ matrix.source }}
BUILD_FAIL_ON: warning
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ pulls.json
draft-yasskin-dispatch-web-packaging.xml
/lib
loading.html
subresource-loading.html
37 changes: 37 additions & 0 deletions subresource-loading.bs
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
hayatoito marked this conversation as resolved.
Show resolved Hide resolved
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>