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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
index 7a9437287170b531e2b4cd138eb06c68d76c2afc..5a1e0d24fcb77675f862cc1a4c90678f07958cfc 100644
--- a/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
+++ b/third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq.html
@@ -2,16 +2,14 @@
<html>
<head>
<title>Test Custom Oscillator at Very Low Frequency</title>
- <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>
</head>
<body>
<script>
- description("Test Custom Oscillator at Very Low Frequency");
- window.jsTestIsAsync = true;
-
// Create a custom oscillator and verify that the parts of a periodic wave that should be
// ignored really are ignored.
@@ -79,11 +77,10 @@
osc.start();
context.startRendering().then(function (buffer) {
checkCosineResult(buffer, desiredFrequencyHz, sampleRate);
- }).then(finishJSTest);
+ });
};
runTest();
- successfullyParsed = true;
</script>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/webaudio/Oscillator/osc-low-freq-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698