blob: ac328e1450f3fb01334a9275d855278f54ba30f9 [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/audit-util.js"></script>
<script src="../resources/audit.js"></script>
<script src="../resources/context-properties.js"></script>
</head>
<body>
<script id="layout-test-code">
let audit = Audit.createTaskRunner();
// Cross-checking two sets of properties: a programmatically generated set
// and a pre-populated set.
audit.define('crosschecking-properties', (task, should) => {
verifyPrototypeOwnProperties(
OfflineAudioContext.prototype, OfflineAudioContextOwnProperties,
should);
task.done();
});
audit.run();
</script>
</body>
</html>