mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-10-31 18:38:45 +01:00
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Audio test</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<link href="testIcon.svg" type="image/png" rel="icon">
|
|
<link href="testIcon.svg" type="image/png" rel="shortcut icon">
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
table-layout: auto;
|
|
}
|
|
table td {
|
|
border: 1px solid lightgray;
|
|
padding: 1px 5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Audio test</h1>
|
|
<h2>Expected result</h2>
|
|
<ul>
|
|
<li>the hashes in each set should be the same (i.e. "all tests equal" should be displayed</li>
|
|
<li>the hashes should vary between the sets</li>
|
|
<li>the "empty" hash should be 95476ffd46d1cd34fe8de83585c325df2b06019c852a5f6445200f57bc954a1b</li>
|
|
<li>hitting the refresh button should not change the values</li>
|
|
<li>reloading the page should change the values (depending on CanvasBlocker settings - e.g. not in the stealth preset)</li>
|
|
</ul>
|
|
<h2>Tests</h2>
|
|
<div id="test">
|
|
Hashes: <table class="hashes"></table>
|
|
<br>
|
|
Sums: <table class="sums"></table>
|
|
<button>refresh</button>
|
|
</div>
|
|
<script src="audioTest.js"></script>
|
|
</body>
|
|
</html> |