From 8572c7b0a2d7649627e85504708e4314d6ee8ed2 Mon Sep 17 00:00:00 2001 From: Reilly Grant Date: Fri, 21 Sep 2018 18:24:16 -0700 Subject: [PATCH] Remove '?' from dictionary members of DeviceMotionEventInit It is invalid for a dictionary member that resolves to a nullable type to be marked with '?'. This change is effectively a no-op because these fields remain nullable. Resolves #54. --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 12b4264..f24e005 100644 --- a/index.html +++ b/index.html @@ -605,9 +605,9 @@

4.4 devicemotion Event

}; dictionary DeviceMotionEventInit : EventInit { - DeviceAccelerationInit? acceleration; - DeviceAccelerationInit? accelerationIncludingGravity; - DeviceRotationRateInit? rotationRate; + DeviceAccelerationInit acceleration; + DeviceAccelerationInit accelerationIncludingGravity; + DeviceRotationRateInit rotationRate; double interval = 0; };