1
0
Fork 0
firefox/toolkit/components/captchadetection/tests/mochitest/hcaptcha_puzzle.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

16 lines
434 B
HTML

<!DOCTYPE html>
<html>
<body aria-hidden="true">
<div id="captchaType" data-captcha-type="hCaptcha"></div>
<script>
window.onmessage = function (event) {
if (event.data === "show-puzzle") {
document.body.setAttribute("aria-hidden", "false");
window.parent.postMessage("showed-puzzle", "*");
}
};
window.parent.postMessage("ready", "*");
</script>
</body>
</html>