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> |