Bug 1293333 - Part 3: Add VRDisplayEvent to test_all_synthetic_events.html r=Ehsan

MozReview-Commit-ID: 6t5xHUZ96G8

--HG--
extra : rebase_source : b94a891f1f20890f2cd8107a9539383a6b6f076f
This commit is contained in:
Kearwood (Kip) Gilbert 2016-11-29 15:34:00 -08:00
parent 752a5f3678
commit 736ad72326

View File

@ -450,6 +450,12 @@ const kEventConstructors = {
return new USSDReceivedEvent(aName, aProps);
},
},
VRDisplayEvent: { create: null,
// Required argument expects a VRDisplay that can not
// be created from Javascript without physical VR hardware
// connected. When Bug 1229480 lands, this test can be
// updated to use the puppet VR device.
},
WheelEvent: { create: function (aName, aProps) {
return new WheelEvent(aName, aProps);
},