-
Notifications
You must be signed in to change notification settings - Fork 35
/
index.html
27 lines (24 loc) · 1.05 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<title>WICG/nav-speculation</title>
<h1>WICG/nav-speculation</h1>
<p>This document has been split for easier reading.</p>
<dl>
<dt><a href="prefetch.html">Prefetch</a></dt>
<dd>Extensions to WHATWG Fetch for prefetching with partitioning in mind.</dd>
<dt><a href="prerendering.html">Prerendering Revamped</a></dt>
<dd>This document contains a collection of specification patches for well-specified prerendering.</dd>
<dt><a href="speculation-rules.html">Speculation Rules</a></dt>
<dd>A flexible syntax for defining what outgoing links can be prepared speculatively before navigation.</dd>
<dt><a href="no-vary-search.html">No-Vary-Search</a></dt>
<dd>A proposed HTTP header for changing how a URL's search component impacts cache hits.</dd>
</dl>
<script>
// Redirect for convenience.
if (location.hash.length >= 2) {
if (location.hash.startsWith('#speculation-rules')) {
location.replace('speculation-rules.html' + location.hash);
} else {
location.replace('prerendering.html' + location.hash);
}
}
</script>