diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2019-05-30 14:50:25 -0700 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2019-05-30 19:04:08 -0700 |
commit | d044a792f1cc664492f646f9c6eddf427d82413e (patch) | |
tree | 01333cf367bafddd062d68638dbe1e42880cd908 /components/script/dom/xrtest.rs | |
parent | 366aa78e55fef850390ac143aba9032fe8f04f73 (diff) | |
download | servo-d044a792f1cc664492f646f9c6eddf427d82413e.tar.gz servo-d044a792f1cc664492f646f9c6eddf427d82413e.zip |
Normalize rotations
Diffstat (limited to 'components/script/dom/xrtest.rs')
-rw-r--r-- | components/script/dom/xrtest.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/xrtest.rs b/components/script/dom/xrtest.rs index 6c895e226cb..3484badf1a7 100644 --- a/components/script/dom/xrtest.rs +++ b/components/script/dom/xrtest.rs @@ -56,7 +56,8 @@ impl XRTestMethods for XRTest { .as_window() .webvr_thread() .unwrap() - .send(WebVRMsg::CreateMockDisplay); + .send(WebVRMsg::CreateMockDisplay) + .unwrap(); p.resolve_native(&FakeXRDeviceController::new(&self.global())); p |