1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-01 10:58:05 +02:00
CanvasBlocker/test/audioTest.html

38 lines
1019 B
HTML
Raw Normal View History

2018-06-30 23:15:47 +02:00
<!DOCTYPE html>
<html>
<head>
<title>Audio test</title>
2019-02-20 08:13:37 +01:00
<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">
2019-02-10 02:50:21 +01:00
<style>
table {
border-collapse: collapse;
width: 100%;
table-layout: auto;
}
table td {
border: 1px solid lightgray;
padding: 1px 5px;
}
</style>
2018-06-30 23:15:47 +02:00
</head>
<body>
<h1>Audio test</h1>
2019-02-10 02:50:21 +01:00
Expected result:
<ul>
<li>the hashes in each set should be the same</li>
<li>the hashes should vary between the sets</li>
<li>the &quot;empty&quot; 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)</li>
</ul>
2018-06-30 23:15:47 +02:00
<div id="test">
2019-02-10 02:50:21 +01:00
Hashes: <table class="hashes"></table>
2018-06-30 23:15:47 +02:00
Sum: <span class="sum"></span>
<button>refresh</button>
</div>
<script src="audioTest.js"></script>
</body>
</html>