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

Side by Side Diff: third_party/WebKit/LayoutTests/webaudio/ScriptProcessor/scriptprocessornode-rewrap.html

Issue 2877523002: Fix scriptprocessornode-rewrap.html (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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <head>
4 <script src="../../resources/js-test.js"></script> 4 <title>
5 <script> 5 scriptprocessornode-rewrap.html
6 var jsTestIsAsync = true; 6 </title>
7 description("Tests re-wrapping an AudioNode sublass after its JS wrapper is dele ted wraps the node as the correct subclass. A binding integrity assert will fire otherwise."); 7 <script src="../../resources/js-test.js"></script>
8 </script> 8 <script src="../resources/scriptprocessornode-testing.js"></script>
9 <script src="../resources/scriptprocessornode-testing.js"></script> 9 </head>
10 <script> 10 <body>
11 var sampleRate = 44100.0; 11 <script id="layout-test-code">
12 var sourceChannels = 2; 12 description(
13 var inputChannels = 8; 13 'Tests re-wrapping an AudioNode sublass after its JS wrapper is ' +
14 var outputChannels = 6; 14 'deleted wraps the node as the correct subclass. A binding ' +
15 runJSNodeTest(); 15 'integrity assert will fire otherwise.');
16 var i = document.createElement("iframe"); 16 window.jsTestIsAsync = true;
17 document.body.appendChild(i); 17
18 </script> 18 let sampleRate = 44100.0;
19 </body> 19 let sourceChannels = 2;
20 let inputChannels = 8;
21 let outputChannels = 6;
22
23 runJSNodeTest();
24
25 let i = document.createElement('iframe');
26 document.body.appendChild(i);
27 </script>
28 </body>
20 </html> 29 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698