-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_interval_arithmetic.htm
38 lines (36 loc) · 2.03 KB
/
test_interval_arithmetic.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/tests.css" />
<script src="js/note_and_interval.js"></script>
<script src="js/scale_and_chord.js"></script>
<script src="js/picker_base.js"></script>
<script src="js/picker_twelve_clock.js"></script>
<script src="js/test_base.js"></script>
<script src="js/test_interval_arithmetic.js"></script>
<!--[if lt IE 9]>
<script src="js/ifielt9.js"></script>
<![endif]-->
</head>
<body>
<h1>Interval arithmetic</h1>
<ul class="ulWithSelectableItems">
<li id="settingAutoSubmit" class="correct">the picker automatically submits your selection</li>
<li id="settingDimAndAug" class="correct">include dims and augs in operands</li>
</ul>
<p><span id="questionStats"></span><span id="responseStats"></span></p>
<h2 id="questionLineOne"></h2>
<div style="font-size:1.8em" id="questionLineTwo"></div>
<div id="thePickerDiv" class="pickerDiv" style="text-align:center"><canvas id="thePickerCanvas">Your browser doesn't support the HTML5 canvas element</canvas></div>
<div id="selectionMessage" style="text-align:center; margin-bottom:0.2em"></div>
<div id="errorMessage" style="text-align:center; color:rgba(255, 0, 0, 0.75); visibility:hidden">Drag a natural to that position to give it meaning.</div>
<div id="negativeIntervalErrorMessage" style="text-align:center; color:rgba(255, 0, 0, 0.75); visibility:hidden">An interval can't have negative size.</div>
<div style="text-align:center">
<button type="button" id="newQuestionSeriesButton" style="height:2.5em; display:none" onclick="newQuestionSeriesBase()">new question series</button>
<button type="button" id="submitSelectionButton" style="height:2.5em" onclick="testSubmitSelection()">submit selection</button>
</div>
</body>
</html>