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

Unified Diff: third_party/WebKit/LayoutTests/vr/getEyeParameters_match.html

Issue 2777903008: Removed deprecated WebVR functionality (Closed)
Patch Set: Another test re-baseline Created 3 years, 8 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/vr/getEyeParameters_match.html
diff --git a/third_party/WebKit/LayoutTests/vr/getEyeParameters_match.html b/third_party/WebKit/LayoutTests/vr/getEyeParameters_match.html
index 8100c49d560d140d9cbc1b026fef29c4de67e1a4..90d9e5cbc5bd4efe811dd5b49ac68df51863e094 100644
--- a/third_party/WebKit/LayoutTests/vr/getEyeParameters_match.html
+++ b/third_party/WebKit/LayoutTests/vr/getEyeParameters_match.html
@@ -23,18 +23,6 @@ vr_test( (t) => {
FLOAT_EPSILON);
}
- let expectedFov = expected.fieldOfView;
- let actualFov = actual.fieldOfView;
- // Can't use Object.keys() and a loop - see crbug.com/678718
- assert_approx_equals(actualFov.upDegrees, expectedFov.upDegrees,
- FLOAT_EPSILON);
- assert_approx_equals(actualFov.rightDegrees, expectedFov.rightDegrees,
- FLOAT_EPSILON);
- assert_approx_equals(actualFov.downDegrees, expectedFov.downDegrees,
- FLOAT_EPSILON);
- assert_approx_equals(actualFov.leftDegrees, expectedFov.leftDegrees,
- FLOAT_EPSILON);
-
assert_equals(actual.renderWidth, expected.renderWidth);
assert_equals(actual.renderHeight, expected.renderHeight);
}, "Returned eye parameters match provided parameters");

Powered by Google App Engine
This is Rietveld 408576698