Skip to content

Commit

Permalink
Remove '?' from dictionary members of DeviceMotionEventInit
Browse files Browse the repository at this point in the history
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 w3c#54.
  • Loading branch information
reillyeon committed Sep 22, 2018
1 parent 6c803ba commit 8572c7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -605,9 +605,9 @@ <h3 id="devicemotion"><span class=secno>4.4 </span>devicemotion Event</h3>
};

dictionary DeviceMotionEventInit : EventInit {
DeviceAccelerationInit? acceleration;
DeviceAccelerationInit? accelerationIncludingGravity;
DeviceRotationRateInit? rotationRate;
DeviceAccelerationInit acceleration;
DeviceAccelerationInit accelerationIncludingGravity;
DeviceRotationRateInit rotationRate;
double interval = 0;
};
</pre>
Expand Down

0 comments on commit 8572c7b

Please sign in to comment.