| OLD | NEW |
| 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 Create an oscillator of each type and verify that the type is set correctly. | 4 Create an oscillator of each type and verify that the type is set correctly. |
| 5 --> | 5 --> |
| 6 <html> | 6 <html> |
| 7 <head> | 7 <head> |
| 8 <link rel="stylesheet" href="../fast/js/resources/js-test-style.css"/> | 8 <link rel="stylesheet" href="../fast/js/resources/js-test-style.css"/> |
| 9 <script type="text/javascript" src="resources/audio-testing.js"></script> | 9 <script type="text/javascript" src="resources/audio-testing.js"></script> |
| 10 <script type="text/javascript" src="../fast/js/resources/js-test-pre.js"></scrip
t> | 10 <script type="text/javascript" src="../fast/js/resources/js-test-pre.js"></scrip
t> |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 shouldThrowTypeError(function() { osc.type = new Float32Array(1); }, "Settin
g .type to illegal type of Float32Array"); | 90 shouldThrowTypeError(function() { osc.type = new Float32Array(1); }, "Settin
g .type to illegal type of Float32Array"); |
| 91 | 91 |
| 92 finishJSTest(); | 92 finishJSTest(); |
| 93 } | 93 } |
| 94 | 94 |
| 95 runTest(); | 95 runTest(); |
| 96 successfullyParsed = true; | 96 successfullyParsed = true; |
| 97 | 97 |
| 98 </script> | 98 </script> |
| 99 | 99 |
| 100 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 101 | 100 |
| 102 </body> | 101 </body> |
| 103 </html> | 102 </html> |
| OLD | NEW |