25 lines
No EOL
629 B
HTML
25 lines
No EOL
629 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Detectors test page</title>
|
|
</head>
|
|
<body>
|
|
<p id="detectViewport">Viewport dimensions here</p>
|
|
<p id="detectDocumentDimensions">Document dimensions here</p>
|
|
<p id="localStorageAccessible">localStorage accessibility here</p>
|
|
<p id="hasSessionStorage">sessionStorage here</p>
|
|
<p id="hasCookies">hasCookies here</p>
|
|
<p id="detectTimezone">Timezone here</p>
|
|
<p id="detectSignature">User fingerprint here</p>
|
|
<p id="detectBrowserFeatures">User fingerprint here</p>
|
|
|
|
<script src="./detectors.js"></script>
|
|
|
|
<script>
|
|
|
|
document.body.className += ' loaded';
|
|
|
|
</script>
|
|
|
|
</body>
|
|
</html> |