1
0
Fork 0
firefox/testing/web-platform/tests/device-bound-session-credentials/fetch-verify-authenticated.https.html
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

12 lines
400 B
HTML

<!DOCTYPE html>
<script src="/common/get-host-info.sub.js"></script>
<body>
<script>
async function onload() {
let base_origin = get_host_info().ORIGIN;
let response = await fetch(`${base_origin}/device-bound-session-credentials/verify_authenticated.py`, {credentials: "omit"});
window.parent.postMessage(response.status, base_origin);
}
onload();
</script>
</body>