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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.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/external/wpt/webvr/idlharness.html
diff --git a/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html b/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
index 77716df9bac229f957a5791f7a753e2abab1f485..b7158117c6095fa7aeed88d2c74de7e6ac56282b 100644
--- a/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
+++ b/third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness.html
@@ -14,7 +14,6 @@
// https://w3c.github.io/webvr/archive/prerelease/1.1/index.html
interface VRDisplay : EventTarget {
- readonly attribute boolean isConnected;
readonly attribute boolean isPresenting;
/**
@@ -56,25 +55,6 @@ interface VRDisplay : EventTarget {
boolean getFrameData(VRFrameData frameData);
/**
- * Return a VRPose containing the future predicted pose of the VRDisplay
- * when the current frame will be presented. The value returned will not
- * change until JavaScript has returned control to the browser.
- *
- * The VRPose will contain the position, orientation, velocity,
- * and acceleration of each of these properties.
- */
- [NewObject] VRPose getPose();
-
- /**
- * Reset the pose for this display, treating its current position and
- * orientation as the "origin/zero" values. VRPose.position,
- * VRPose.orientation, and VRStageParameters.sittingToStandingTransform may be
- * updated when calling resetPose(). This should be called in only
- * sitting-space experiences.
- */
- void resetPose();
-
- /**
* z-depth defining the near plane of the eye view frustum
* enables mapping of values in the render target depth
* attachment to scene coordinates. Initially set to 0.01.
@@ -144,7 +124,6 @@ dictionary VRLayer {
interface VRDisplayCapabilities {
readonly attribute boolean hasPosition;
- readonly attribute boolean hasOrientation;
readonly attribute boolean hasExternalDisplay;
readonly attribute boolean canPresent;
readonly attribute unsigned long maxLayers;
@@ -155,13 +134,6 @@ enum VREye {
"right"
};
-interface VRFieldOfView {
- readonly attribute double upDegrees;
- readonly attribute double rightDegrees;
- readonly attribute double downDegrees;
- readonly attribute double leftDegrees;
-};
-
interface VRPose {
readonly attribute Float32Array? position;
readonly attribute Float32Array? linearVelocity;
@@ -186,8 +158,6 @@ interface VRFrameData {
interface VREyeParameters {
readonly attribute Float32Array offset;
- [SameObject] readonly attribute VRFieldOfView fieldOfView;
-
readonly attribute unsigned long renderWidth;
readonly attribute unsigned long renderHeight;
};
« no previous file with comments | « device/vr/vr_service.mojom ('k') | third_party/WebKit/LayoutTests/external/wpt/webvr/idlharness-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698