| Index: third_party/WebKit/LayoutTests/imagecapture/MediaStreamTrack-getSettings.html
|
| diff --git a/third_party/WebKit/LayoutTests/imagecapture/MediaStreamTrack-getSettings.html b/third_party/WebKit/LayoutTests/imagecapture/MediaStreamTrack-getSettings.html
|
| index 3ae9df20d7b87d9ea0854d5caa4fb927def74a30..81d3eba36c8ab5d01ec81d770ba0f0aa810645fa 100644
|
| --- a/third_party/WebKit/LayoutTests/imagecapture/MediaStreamTrack-getSettings.html
|
| +++ b/third_party/WebKit/LayoutTests/imagecapture/MediaStreamTrack-getSettings.html
|
| @@ -45,6 +45,18 @@ async_test(function(t) {
|
| assert_equals(settings.focusMode,
|
| meteringModeNames[mock_settings.focus_mode], 'focusMode');
|
|
|
| + assert_equals(settings.pointsOfInterest.length,
|
| + mock_settings.points_of_interest.length,
|
| + 'pointsOfInterest');
|
| + for (i = 0; i < settings.pointsOfInterest.length; ++i) {
|
| + assert_approx_equals(settings.pointsOfInterest[i].x,
|
| + mock_settings.points_of_interest[i].x, 0.01,
|
| + 'pointsOfInterest x');
|
| + assert_approx_equals(settings.pointsOfInterest[i].y,
|
| + mock_settings.points_of_interest[i].y, 0.01,
|
| + 'pointsOfInterest y');
|
| + }
|
| +
|
| assert_equals(settings.exposureCompensation,
|
| mock_settings.exposure_compensation.current);
|
| assert_equals(settings.colorTemperature,
|
|
|