<!DOCTYPEhtml>
<meta charset="utf-8">
<title>Downloading .lnk through HTTP should always download the file without parsing it</title>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script>
SimpleTest.waitForExplicitFinish();
// Download .lnk which points to a system executable
fetch("file_lnk.lnk").then(async res => {
ok(res.ok, "Download success");
ok(res.url.endsWith("file_lnk.lnk"), "file name should be of the lnk file");
is(res.headers.get("Content-Length"), "1531", "The size should be of the lnk file");
SimpleTest.finish();
}, () => {
ok(false, "Unreachable code");
})
</script>
Messung V0.5
¤ Dauer der Verarbeitung: 0.17 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.