blob: 777e1a3f3f561341477e91e3da0f1d577897da81 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Testing OfflineAudioContext properties</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="resources/audio-testing.js"></script>
<script src="resources/context-properties.js"></script>
</head>
<body>
<script>
var audit = Audit.createTaskRunner();
// Cross-checking two sets of properties: a programmatically generated set
// and a pre-populated set.
audit.defineTask('crosschecking-properties', function (taskDone) {
verifyPrototypeOwnProperties(OfflineAudioContext.prototype,
OfflineAudioContextOwnProperties,
Should);
taskDone();
});
audit.runTasks();
</script>
</body>
</html>