30 lines
615 B
HTML
30 lines
615 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Speculation Rules</title>
|
|
</head>
|
|
<body>
|
|
<h1>Speculation Rules</h1>
|
|
<!-- Immediate Eagerness - prefetches as soon as page loads -->
|
|
<script type="speculationrules">
|
|
{
|
|
"prefetch": [
|
|
{
|
|
"urls": [
|
|
"html_speculation-rules_subpage.html"
|
|
],
|
|
"eagerness": "immediate"
|
|
}
|
|
]
|
|
}
|
|
</script>
|
|
|
|
<div class="section">
|
|
<h2>Immediate Eagerness</h2>
|
|
<p>These links are prefetched as soon as the page loads.</p>
|
|
<a href="html_speculation-rules_subpage.html">Subpage</a>
|
|
</div>
|
|
</body>
|
|
</html>
|