@@ -28,14 +28,14 @@ const eventInitializer: {
28
28
Event : [ ] ,
29
29
FocusEvent : [ initUIEvent , initFocusEvent ] ,
30
30
InputEvent : [ initUIEvent , initInputEvent ] ,
31
- MouseEvent : [ initUIEvent , initUIEventModififiers , initMouseEvent ] ,
31
+ MouseEvent : [ initUIEvent , initUIEventModifiers , initMouseEvent ] ,
32
32
PointerEvent : [
33
33
initUIEvent ,
34
- initUIEventModififiers ,
34
+ initUIEventModifiers ,
35
35
initMouseEvent ,
36
36
initPointerEvent ,
37
37
] ,
38
- KeyboardEvent : [ initUIEvent , initUIEventModififiers , initKeyboardEvent ] ,
38
+ KeyboardEvent : [ initUIEvent , initUIEventModifiers , initKeyboardEvent ] ,
39
39
}
40
40
41
41
export function createEvent < K extends EventType > (
@@ -143,7 +143,7 @@ function initUIEvent(event: UIEvent, {view, detail}: UIEventInit) {
143
143
} )
144
144
}
145
145
146
- function initUIEventModififiers (
146
+ function initUIEventModifiers (
147
147
event : KeyboardEvent | MouseEvent ,
148
148
{
149
149
altKey,
@@ -262,8 +262,8 @@ function initPointerEvent(
262
262
) {
263
263
assignProps ( event , {
264
264
pointerId : sanitizeNumber ( pointerId ) ,
265
- width : sanitizeNumber ( width ) ,
266
- height : sanitizeNumber ( height ) ,
265
+ width : sanitizeNumber ( width ?? 1 ) ,
266
+ height : sanitizeNumber ( height ?? 1 ) ,
267
267
pressure : sanitizeNumber ( pressure ) ,
268
268
tangentialPressure : sanitizeNumber ( tangentialPressure ) ,
269
269
tiltX : sanitizeNumber ( tiltX ) ,
0 commit comments