Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Unified Diff: third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html

Issue 2672053002: Convert Oscillator Audit tests to testharness (Closed)
Patch Set: Address review comments Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html
index 90648a716364aad8a28507ecc1fa3983ce4b4f9d..32be9c3e5c37a767b9ac42afc2d7a43a54a00e50 100644
--- a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html
+++ b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-negative-freq.html
@@ -1,7 +1,8 @@
<!doctype html>
<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>
<title>Test OscillatorNode with Negative Frequency</title>
@@ -9,9 +10,6 @@
<body>
<script>
- description("Test OscillatorNode with Negative Frequency.");
- window.jsTestIsAsync = true;
-
// Some arbitrary sample rate for the offline context.
var sampleRate = 48000;
var renderDuration = 1;
@@ -144,13 +142,6 @@
}).then(done);
});
-
- // All done!
- audit.defineTask("finish", function (done) {
- finishJSTest();
- done();
- });
-
audit.runTasks();
function runTest(options) {

Powered by Google App Engine
This is Rietveld 408576698