author | autofoolip <auto@foolip.org> |
Tue, 31 Mar 2020 12:22:19 +0000 | |
changeset 521793 | 258f11fa0a9b8090e32b2092f9e77e2228ff8bbd |
parent 521792 | e409a332d6f9b90a973de7368e6faec652a6d91e |
child 521794 | 7fc6185de72da18c7ad5526f4aa506ccbfa0f89a |
push id | 111851 |
push user | wptsync@mozilla.com |
push date | Thu, 02 Apr 2020 10:52:18 +0000 |
treeherder | autoland@51a637dcd601 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1625914, 22530 |
milestone | 76.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
testing/web-platform/tests/interfaces/webxr-ar-module.idl | file | annotate | diff | comparison | revisions |
--- a/testing/web-platform/tests/interfaces/webxr-ar-module.idl +++ b/testing/web-platform/tests/interfaces/webxr-ar-module.idl @@ -8,8 +8,18 @@ enum XREnvironmentBlendMode { "alpha-blend", "additive" }; partial interface XRSession { // Attributes readonly attribute XREnvironmentBlendMode environmentBlendMode; }; + +enum XRInteractionMode { + "screen-space", + "world-space", +}; + +partial interface XRSession { + // Attributes + readonly attribute XRInteractionMode interactionMode; +};