| Index: third_party/WebKit/LayoutTests/webaudio/audiolistener-automation-position.html
|
| diff --git a/third_party/WebKit/LayoutTests/webaudio/audiolistener-automation-position.html b/third_party/WebKit/LayoutTests/webaudio/audiolistener-automation-position.html
|
| index 40717aca978176b25949d7797761ee5ba655c2de..3aa3537d17c39d95422ad0c56e49012fc60f07b0 100644
|
| --- a/third_party/WebKit/LayoutTests/webaudio/audiolistener-automation-position.html
|
| +++ b/third_party/WebKit/LayoutTests/webaudio/audiolistener-automation-position.html
|
| @@ -180,9 +180,13 @@
|
|
|
| var prefix = 'Distance model: "' + options.distanceModel.model + '"';
|
| prefix += ', rolloff: ' + options.distanceModel.rolloff;
|
| - success = Should(prefix + ": left channel", actualLeft)
|
| + success = Should(prefix + ": left channel", actualLeft, {
|
| + precision: 5
|
| + })
|
| .beCloseToArray(expectedLeft, 0) && success;
|
| - success = Should(prefix + ": right channel", actualRight)
|
| + success = Should(prefix + ": right channel", actualRight, {
|
| + precision: 5
|
| + })
|
| .beCloseToArray(expectedRight, 0) && success;
|
|
|
| var message = 'Moving AudioListener with distance model: "';
|
|
|