summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/androidTest/assets/pages/global_privacy_control.html
blob: e08df8c17ff754554a797ccaf986aa1c07abdbf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width">
<body>
<script type = "text/javascript" >
    const gpcValue = navigator.globalPrivacyControl
        if (gpcValue) {
            document.write('<p>GPC is enabled.</p>');
        } else {
            document.write('<p>GPC not enabled.</p>');
        }
</script>

</body>
</html>