Index: third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-setTargetAtTime.html |
diff --git a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-setTargetAtTime.html b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-setTargetAtTime.html |
index 0fd4d74d8bcb263706efafc66e6fcaf0f3a43e3d..e0baf7ebf714fc627272983e5fcd5e47cb25a139 100644 |
--- a/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-setTargetAtTime.html |
+++ b/third_party/WebKit/LayoutTests/webaudio/AudioParam/audioparam-setTargetAtTime.html |
@@ -1,19 +1,17 @@ |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
<html> |
<head> |
-<script src="../../resources/js-test.js"></script> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
<script src="../resources/audit-util.js"></script> |
-<script src="../resources/audio-testing.js"></script> |
+<script src="../resources/audit.js"></script> |
<script src="../resources/audioparam-testing.js"></script> |
<title>Test AudioParam.setTargetAtTime</title> |
</head> |
<body> |
-<div id="description"></div> |
-<div id="console"></div> |
- |
<script> |
-description("Test AudioParam setTargetAtTime() functionality."); |
+let audit = Audit.createTaskRunner(); |
// Play a long DC signal out through an AudioGainNode, and call setValueAtTime() and |
// setTargetAtTime at regular intervals to set the starting value and the target |
@@ -43,20 +41,18 @@ function automation(value, startTime, endTime) |
gainNode.gain.setTargetAtTime(value, startTime, timeConstant) |
} |
-function runTest() |
-{ |
- createAudioGraphAndTest(numberOfTests, |
+audit.define("test", function (task, should) { |
+ task.describe("AudioParam setTargetAtTime() functionality."); |
+ createAudioGraphAndTest(task, should, numberOfTests, |
initialValue, |
setValue, |
automation, |
"setTargetAtTime()", |
maxAllowedError, |
createExponentialApproachArray); |
-} |
- |
-runTest(); |
-successfullyParsed = true; |
+}); |
+audit.run(); |
</script> |
</body> |