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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/StereoPanner/stereopannernode-panning.html

Issue 2695113003: Convert StereoPanner Audit tests to testharness (Closed)
Patch Set: Fix typo 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/StereoPanner/stereopannernode-panning.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/StereoPanner/stereopannernode-panning.html b/third_party/WebKit/LayoutTests/webaudio/StereoPanner/stereopannernode-panning.html
index a2711440d1fb6eb468b5326dc6599f17a3044a94..3b9d766ac49912719e78e20b6d75dfae528a57cb 100644
--- a/third_party/WebKit/LayoutTests/webaudio/StereoPanner/stereopannernode-panning.html
+++ b/third_party/WebKit/LayoutTests/webaudio/StereoPanner/stereopannernode-panning.html
@@ -2,18 +2,15 @@
<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/stereopanner-testing.js"></script>
</head>
<body>
- <div id="description"></div>
- <div id="console"></div>
<script>
- description('Test panning model of StereoPannerNode.');
- window.jsTestIsAsync = true;
var audit = Audit.createTaskRunner();
@@ -27,12 +24,9 @@
audit.defineTask('finish-test', function (done) {
done();
- finishJSTest();
});
audit.runTasks('mono-test', 'stereo-test', 'finish-test');
-
- successfullyParsed = true;
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698