| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <title>Testing BaseAudioContext properties</title> |
| 5 <script src="../resources/testharness.js"></script> |
| 6 <script src="../resources/testharnessreport.js"></script> |
| 7 <script src="resources/audio-testing.js"></script> |
| 8 <script src="resources/context-properties.js"></script> |
| 9 </head> |
| 10 <body> |
| 11 <script> |
| 12 var audit = Audit.createTaskRunner(); |
| 13 |
| 14 |
| 15 // Check all the property belongs to the BaseAudioContext prototype. |
| 16 audit.defineTask('baseaudiocontext-properties', function (taskDone) { |
| 17 |
| 18 checkContextProperties({ |
| 19 targetPrototype: BaseAudioContext.prototype, |
| 20 targetDescription: 'BaseAudioContext.prototype', |
| 21 propertyDict: BaseAudioContextOwnProperties |
| 22 }, Should); |
| 23 |
| 24 taskDone(); |
| 25 }); |
| 26 |
| 27 |
| 28 audit.runTasks(); |
| 29 </script> |
| 30 </body> |
| 31 </html> |
| OLD | NEW |