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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html

Issue 2900813002: Add missing semicolons in biquad-automation.html (Closed)
Patch Set: Remove a redundant semicolon 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html b/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html
index b001ef4297225e47b65cdfeb53358caf13e6bf24..ff0eb2860a0da56d02b7e95fa613288b24fdee44 100644
--- a/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html
+++ b/third_party/WebKit/LayoutTests/webaudio/BiquadFilter/biquad-automation.html
@@ -157,7 +157,7 @@
// frequency.
var parameters = {
freq: [centerFreq - 5*440, centerFreq + 5*440]
- }
+ };
var graph = configureGraph(context, centerFreq);
var f = graph.filter;
var b = graph.source;
@@ -220,7 +220,7 @@
var parameters = {
freq: [3500, 3500],
gain: [20, -20]
- }
+ };
var graph = configureGraph(context, centerFreq);
var f = graph.filter;
var b = graph.source;
« 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