1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14

content / test / data / prerender / page_with_trigger_function.html [blame]

<!DOCTYPE html>
<html>
<head>
<script>
function add_speculation_rules(url) {
  const script = document.createElement('script');
  script.type = 'speculationrules';
  script.text = `{"prerender": [{"source": "list", "urls": ["${url}"] }] }`;
  document.head.appendChild(script);
}
</script>
</head>
<body></body>
</html>