mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Add XRSessionEvent
This commit is contained in:
parent
c9204375eb
commit
638cc92e89
4 changed files with 94 additions and 21 deletions
|
@ -552,6 +552,7 @@ pub mod xrreferencespace;
|
||||||
pub mod xrrenderstate;
|
pub mod xrrenderstate;
|
||||||
pub mod xrrigidtransform;
|
pub mod xrrigidtransform;
|
||||||
pub mod xrsession;
|
pub mod xrsession;
|
||||||
|
pub mod xrsessionevent;
|
||||||
pub mod xrspace;
|
pub mod xrspace;
|
||||||
pub mod xrtest;
|
pub mod xrtest;
|
||||||
pub mod xrview;
|
pub mod xrview;
|
||||||
|
|
15
components/script/dom/webidls/XRSessionEvent.webidl
Normal file
15
components/script/dom/webidls/XRSessionEvent.webidl
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
// https://immersive-web.github.io/webxr/#xrsessionevent-interface
|
||||||
|
|
||||||
|
[SecureContext, Exposed=Window, Pref="dom.webxr.enabled", Constructor
|
||||||
|
(DOMString type, XRSessionEventInit eventInitDict)]
|
||||||
|
interface XRSessionEvent : Event {
|
||||||
|
[SameObject] readonly attribute XRSession session;
|
||||||
|
};
|
||||||
|
|
||||||
|
dictionary XRSessionEventInit : EventInit {
|
||||||
|
required XRSession session;
|
||||||
|
};
|
78
components/script/dom/xrsessionevent.rs
Normal file
78
components/script/dom/xrsessionevent.rs
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
|
use crate::dom::bindings::codegen::Bindings::EventBinding::EventBinding::EventMethods;
|
||||||
|
use crate::dom::bindings::codegen::Bindings::XRSessionEventBinding::{self, XRSessionEventMethods};
|
||||||
|
use crate::dom::bindings::error::Fallible;
|
||||||
|
use crate::dom::bindings::inheritance::Castable;
|
||||||
|
use crate::dom::bindings::reflector::{reflect_dom_object, DomObject};
|
||||||
|
use crate::dom::bindings::root::{Dom, DomRoot};
|
||||||
|
use crate::dom::bindings::str::DOMString;
|
||||||
|
use crate::dom::event::Event;
|
||||||
|
use crate::dom::globalscope::GlobalScope;
|
||||||
|
use crate::dom::window::Window;
|
||||||
|
use crate::dom::xrsession::XRSession;
|
||||||
|
use dom_struct::dom_struct;
|
||||||
|
use servo_atoms::Atom;
|
||||||
|
|
||||||
|
#[dom_struct]
|
||||||
|
pub struct XRSessionEvent {
|
||||||
|
event: Event,
|
||||||
|
session: Dom<XRSession>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XRSessionEvent {
|
||||||
|
#[allow(unrooted_must_root)]
|
||||||
|
fn new_inherited(session: &XRSession) -> XRSessionEvent {
|
||||||
|
XRSessionEvent {
|
||||||
|
event: Event::new_inherited(),
|
||||||
|
session: Dom::from_ref(session),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn new(
|
||||||
|
global: &GlobalScope,
|
||||||
|
type_: Atom,
|
||||||
|
bubbles: bool,
|
||||||
|
cancelable: bool,
|
||||||
|
session: &XRSession,
|
||||||
|
) -> DomRoot<XRSessionEvent> {
|
||||||
|
let trackevent = reflect_dom_object(
|
||||||
|
Box::new(XRSessionEvent::new_inherited(&session)),
|
||||||
|
global,
|
||||||
|
XRSessionEventBinding::Wrap,
|
||||||
|
);
|
||||||
|
{
|
||||||
|
let event = trackevent.upcast::<Event>();
|
||||||
|
event.init_event(type_, bubbles, cancelable);
|
||||||
|
}
|
||||||
|
trackevent
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn Constructor(
|
||||||
|
window: &Window,
|
||||||
|
type_: DOMString,
|
||||||
|
init: &XRSessionEventBinding::XRSessionEventInit,
|
||||||
|
) -> Fallible<DomRoot<XRSessionEvent>> {
|
||||||
|
Ok(XRSessionEvent::new(
|
||||||
|
&window.global(),
|
||||||
|
Atom::from(type_),
|
||||||
|
init.parent.bubbles,
|
||||||
|
init.parent.cancelable,
|
||||||
|
&init.session,
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl XRSessionEventMethods for XRSessionEvent {
|
||||||
|
// https://immersive-web.github.io/webxr/#dom-xrsessioneventinit-session
|
||||||
|
fn Session(&self) -> DomRoot<XRSession> {
|
||||||
|
DomRoot::from_ref(&*self.session)
|
||||||
|
}
|
||||||
|
|
||||||
|
// https://dom.spec.whatwg.org/#dom-event-istrusted
|
||||||
|
fn IsTrusted(&self) -> bool {
|
||||||
|
self.event.IsTrusted()
|
||||||
|
}
|
||||||
|
}
|
|
@ -44,18 +44,12 @@
|
||||||
[XRInputSourceArray interface: attribute length]
|
[XRInputSourceArray interface: attribute length]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface: existence and properties of interface object]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRInputSource interface: attribute targetRayMode]
|
[XRInputSource interface: attribute targetRayMode]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRBoundedReferenceSpace interface object length]
|
[XRBoundedReferenceSpace interface object length]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface object length]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRWebGLLayer interface: operation getNativeFramebufferScaleFactor(XRSession)]
|
[XRWebGLLayer interface: operation getNativeFramebufferScaleFactor(XRSession)]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -74,18 +68,12 @@
|
||||||
[XRReferenceSpaceEvent interface object length]
|
[XRReferenceSpaceEvent interface object length]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface: existence and properties of interface prototype object's @@unscopables property]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[WebGLRenderingContext interface: operation makeXRCompatible()]
|
[WebGLRenderingContext interface: operation makeXRCompatible()]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRInputSourcesChangeEvent interface: attribute added]
|
[XRInputSourcesChangeEvent interface: attribute added]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface object name]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRInputSourceEvent interface: attribute inputSource]
|
[XRInputSourceEvent interface: attribute inputSource]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -98,18 +86,12 @@
|
||||||
[XRInputSourcesChangeEvent interface: attribute removed]
|
[XRInputSourcesChangeEvent interface: attribute removed]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface: existence and properties of interface prototype object's "constructor" property]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRSession interface: attribute onselectstart]
|
[XRSession interface: attribute onselectstart]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRInputSourceEvent interface: existence and properties of interface prototype object]
|
[XRInputSourceEvent interface: existence and properties of interface prototype object]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface: attribute session]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRReferenceSpaceEvent interface: existence and properties of interface object]
|
[XRReferenceSpaceEvent interface: existence and properties of interface object]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
@ -236,9 +218,6 @@
|
||||||
[XRSession interface: attribute oninputsourceschange]
|
[XRSession interface: attribute oninputsourceschange]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
[XRSessionEvent interface: existence and properties of interface prototype object]
|
|
||||||
expected: FAIL
|
|
||||||
|
|
||||||
[XRBoundedReferenceSpace interface: existence and properties of interface prototype object]
|
[XRBoundedReferenceSpace interface: existence and properties of interface prototype object]
|
||||||
expected: FAIL
|
expected: FAIL
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue