trisquel-icecat/icecat/netwerk/test/browser/early_hint_pixel_count.sjs

9 lines
317 B
JavaScript

"use strict";
function handleRequest(request, response) {
if (request.hasHeader("X-Early-Hint-Count-Start")) {
setSharedState("earlyHintCount", JSON.stringify({ hinted: 0, normal: 0 }));
}
response.setHeader("Content-Type", "application/json", false);
response.write(getSharedState("earlyHintCount"));
}