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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html

Issue 2895963003: Apply layout-test-tidy to LayoutTests/webaudio (Closed)
Patch Set: Created 3 years, 7 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/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html b/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html
index 33f653582218623b8993bd6eacdb88bb603e4093..0ac073a31732b3eebda39beac9db3ada666ea87a 100644
--- a/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html
+++ b/third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-upmix2-8channel-input.html
@@ -1,36 +1,36 @@
<!DOCTYPE html>
-
<html>
-<head>
-<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/scriptprocessornode-testing-audit.js"></script>
-</head>
-
-<body>
-<script>
-let audit = Audit.createTaskRunner();
-
-let sampleRate = 44100.0;
-let sourceChannels = 2;
-let inputChannels = 8;
-let outputChannels = 6;
+ <head>
+ <title>
+ scriptprocessornode-upmix2-8channel-input.html
+ </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/scriptprocessornode-testing-audit.js"></script>
+ </head>
+ <body>
+ <script id="layout-test-code">
+ let audit = Audit.createTaskRunner();
-audit.define(
- {
- label: 'test',
- description:
- 'upmix a 2-channel source ScriptProcessorNode with 8-channel output'
- },
- (task, should) => {
- runJSNodeTest(should).then(() => task.done());
- ;
- });
+ let sampleRate = 44100.0;
+ let sourceChannels = 2;
+ let inputChannels = 8;
+ let outputChannels = 6;
-audit.run();
-</script>
+ audit.define(
+ {
+ label: 'test',
+ description:
+ 'upmix a 2-channel source ScriptProcessorNode with 8-channel output'
+ },
+ (task, should) => {
+ runJSNodeTest(should).then(() => task.done());
+ ;
+ });
-</body>
+ audit.run();
+ </script>
+ </body>
</html>

Powered by Google App Engine
This is Rietveld 408576698