| 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;
|
| };
|
|
|