mirror of
https://github.com/microsoft/playwright.git
synced 2025-01-07 11:46:42 +03:00
feat(webkit): roll to r1535 (#8457)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
50dcd2994c
commit
fe96cc274f
@ -23,7 +23,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1534",
|
"revision": "1535",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446"
|
"mac10.14": "1446"
|
||||||
|
31
src/server/webkit/protocol.d.ts
vendored
31
src/server/webkit/protocol.d.ts
vendored
@ -4681,6 +4681,35 @@ Left=1, Right=2, Middle=4, Back=8, Forward=16, None=0.
|
|||||||
}
|
}
|
||||||
export type dispatchMouseEventReturnValue = {
|
export type dispatchMouseEventReturnValue = {
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Dispatches a wheel event to the page.
|
||||||
|
*/
|
||||||
|
export type dispatchWheelEventParameters = {
|
||||||
|
/**
|
||||||
|
* X coordinate of the event relative to the main frame's viewport in CSS pixels.
|
||||||
|
*/
|
||||||
|
x: number;
|
||||||
|
/**
|
||||||
|
* Y coordinate of the event relative to the main frame's viewport in CSS pixels. 0 refers to
|
||||||
|
the top of the viewport and Y increases as it proceeds towards the bottom of the viewport.
|
||||||
|
*/
|
||||||
|
y: number;
|
||||||
|
/**
|
||||||
|
* Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8
|
||||||
|
(default: 0).
|
||||||
|
*/
|
||||||
|
modifiers?: number;
|
||||||
|
/**
|
||||||
|
* X delta in CSS pixels for mouse wheel event (default: 0).
|
||||||
|
*/
|
||||||
|
deltaX?: number;
|
||||||
|
/**
|
||||||
|
* Y delta in CSS pixels for mouse wheel event (default: 0).
|
||||||
|
*/
|
||||||
|
deltaY?: number;
|
||||||
|
}
|
||||||
|
export type dispatchWheelEventReturnValue = {
|
||||||
|
}
|
||||||
/**
|
/**
|
||||||
* Dispatches a tap event to the page.
|
* Dispatches a tap event to the page.
|
||||||
*/
|
*/
|
||||||
@ -8951,6 +8980,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreParameters;
|
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreParameters;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventParameters;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventParameters;
|
||||||
|
"Input.dispatchWheelEvent": Input.dispatchWheelEventParameters;
|
||||||
"Input.dispatchTapEvent": Input.dispatchTapEventParameters;
|
"Input.dispatchTapEvent": Input.dispatchTapEventParameters;
|
||||||
"Inspector.enable": Inspector.enableParameters;
|
"Inspector.enable": Inspector.enableParameters;
|
||||||
"Inspector.disable": Inspector.disableParameters;
|
"Inspector.disable": Inspector.disableParameters;
|
||||||
@ -9249,6 +9279,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreReturnValue;
|
"IndexedDB.clearObjectStore": IndexedDB.clearObjectStoreReturnValue;
|
||||||
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
"Input.dispatchKeyEvent": Input.dispatchKeyEventReturnValue;
|
||||||
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
"Input.dispatchMouseEvent": Input.dispatchMouseEventReturnValue;
|
||||||
|
"Input.dispatchWheelEvent": Input.dispatchWheelEventReturnValue;
|
||||||
"Input.dispatchTapEvent": Input.dispatchTapEventReturnValue;
|
"Input.dispatchTapEvent": Input.dispatchTapEventReturnValue;
|
||||||
"Inspector.enable": Inspector.enableReturnValue;
|
"Inspector.enable": Inspector.enableReturnValue;
|
||||||
"Inspector.disable": Inspector.disableReturnValue;
|
"Inspector.disable": Inspector.disableReturnValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user