-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (77 loc) · 2.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>GTM consent Page</title>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-PCPHR63');</script>
<!-- End Google Tag Manager -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=DC-4436300"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'DC-4436300');
</script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-PCPHR63"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<h1>My Test Page</h1>
<button class="button" id="deny_consent_button">Deny consent</button>
<button class="button" id="grant_consent_button">Grant consent</button>
<button class="button" onclick="sendAdsPurchaseEvent()">Purchase Event</button>
<button class="button" onclick="pushHistoryState()">History change event</button>
<br>
<a href="/#newState=2">Hash change</a>
<br>
<a href="/not-debugged-container.html">Go to non-debuggable container page</a>
<br>
<a href="/ogt_consent_default_preprod.html">Go Consent Default Preprod</a>
<br>
<a href="/user-data.html">Go Ads User Data Preprod</a>
<br>
<a href="/ga-user-data-preprod.html">Go GA User Data Preprod</a>
<br>
<a href="/em-preprod-test.html">Go to EM preprod test</a>
<br>
<a href="/em-prod-test.html">Go to EM prod test</a>
<br>
<a href="/em-old-container-prod-test.html">Go to EM prod test with OLD impl</a>
<br>
<a href="/em-new-container-prod-test.html">Go to EM prod test with NEW impl</a>
<br>
<a href="/fl-test-preprod.html">Go to fl-test-preprod.html</a>
<br>
<a href="/pii_predetection.html">Go to pii_predetection.html</a>
<br>
<a href="/pii_predetection_old.html">Go to pii_predetection_old.html</a>
<br>
<div style="height: 300px; width: 100%; overflow: auto">
<div style="height: 400%; width: 100%">
<select id="zhan">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
<option value="4">Option 4</option>
<option value="5">Option 5</option>
</select>
</div>
</div>
<!-- Event snippet for Conversion level EC conversion page -->
<script>
gtag('event', 'conversion', {
'send_to': 'AW-593608426/C9WMCPT7pqsZEOr9hpsC',
'value': 13.0,
'currency': 'USD',
'transaction_id': ''
});
</script>
</body>
</html>