trisquel-icecat/icecat/toolkit/components/captchadetection/tests/mochitest/datadome.html
2025-10-06 02:35:48 -06:00

19 lines
453 B
HTML

<!DOCTYPE html>
<html>
<body>
<div id="captchaType" data-captcha-type="datadome"></div>
<script>
function load() {
const message = new URLSearchParams(window.location.search).get("message");
window.parent.postMessage(message, "*");
}
if (document.readyState === "loading") {
document.addEventListener("DOMContentLoaded", load);
} else {
load();
}
</script>
</body>
</html>