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

Unified Diff: third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html

Issue 2200413005: Update WebAudio layout tests for Android (arm32) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor cleanups. Created 4 years, 4 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/panner-automation-position.html
diff --git a/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html b/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
index 56fad3232d722225fc05e40aa98f3b15a30ebd54..9a493736e81b7c10c6e8606666204d39be5eac9b 100644
--- a/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
+++ b/third_party/WebKit/LayoutTests/webaudio/panner-automation-position.html
@@ -251,9 +251,13 @@
if (options.errorThreshold)
errorThreshold = options.errorThreshold[channelCount - 1]
- Should(prefix + "distanceModel: " + info + ", left channel", data0)
+ Should(prefix + "distanceModel: " + info + ", left channel", data0, {
+ precision: 5
+ })
.beCloseToArray(expected0, errorThreshold);
- Should(prefix + "distanceModel: " + info + ", right channel", data1)
+ Should(prefix + "distanceModel: " + info + ", right channel", data1, {
+ precision: 5
+ })
.beCloseToArray(expected1, errorThreshold);
});
}

Powered by Google App Engine
This is Rietveld 408576698