1
0
Fork 0
firefox/netwerk/test/browser/file_link_dns_prefetch.sjs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

25 lines
657 B
JavaScript

"use strict";
function handleRequest(request, response) {
// write to raw socket
response.seizePower();
let body = `<!DOCTYPE html>
<html>
<head>
<link rel="dns-prefetch" href="https://example.org">
</head>
<body>
<h1>Test rel=dns-prefetch<h1>
<a href="https://www.mozilla.org"> Test link </a>
</body>
</html>`;
response.write("HTTP/1.1 200 OK\r\n");
response.write("Content-Type: text/html;charset=utf-8\r\n");
response.write("Cache-Control: no-cache\r\n");
response.write(`Content-Length: ${body.length}\r\n`);
response.write("\r\n");
response.write(body);
response.finish();
}