Update web-platform-tests to revision 78c15447152438264b49f4488683f60ee47d068f

This commit is contained in:
WPT Sync Bot 2019-02-02 20:54:25 -05:00
parent 007333e123
commit 314da91646
13 changed files with 207 additions and 79 deletions

View file

@ -93,23 +93,20 @@ enum XRReferenceSpaceType {
"unbounded"
};
dictionary XRReferenceSpaceOptions {
required XRReferenceSpaceType type;
};
[SecureContext, Exposed=Window] interface XRReferenceSpace : XRSpace {
attribute XRRigidTransform originOffset;
attribute EventHandler onreset;
};
enum XRStationaryReferenceSpaceSubtype {
"eye-level",
"floor-level",
"position-disabled"
};
dictionary XRStationaryReferenceSpaceOptions : XRReferenceSpaceOptions {
required XRStationaryReferenceSpaceSubtype subtype;
dictionary XRReferenceSpaceOptions {
required XRReferenceSpaceType type;
XRStationaryReferenceSpaceSubtype subtype;
};
[SecureContext, Exposed=Window] interface XRReferenceSpace : XRSpace {
attribute XRRigidTransform originOffset;
attribute EventHandler onreset;
};
[SecureContext, Exposed=Window]