feat(firefox): roll to r1190 (#4133)
This commit is contained in:
parent
8c6a2e197a
commit
c7b23599bc
|
|
@ -8,7 +8,7 @@
|
|||
},
|
||||
{
|
||||
"name": "firefox",
|
||||
"revision": "1188",
|
||||
"revision": "1190",
|
||||
"download": true
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -590,6 +590,12 @@ export module Protocol {
|
|||
export type dispatchTouchEventReturnValue = {
|
||||
defaultPrevented: boolean;
|
||||
};
|
||||
export type dispatchTapEventParameters = {
|
||||
x: number;
|
||||
y: number;
|
||||
modifiers: number;
|
||||
};
|
||||
export type dispatchTapEventReturnValue = void;
|
||||
export type dispatchMouseEventParameters = {
|
||||
type: string;
|
||||
button: number;
|
||||
|
|
@ -1013,6 +1019,7 @@ export module Protocol {
|
|||
"Page.getContentQuads": Page.getContentQuadsParameters;
|
||||
"Page.dispatchKeyEvent": Page.dispatchKeyEventParameters;
|
||||
"Page.dispatchTouchEvent": Page.dispatchTouchEventParameters;
|
||||
"Page.dispatchTapEvent": Page.dispatchTapEventParameters;
|
||||
"Page.dispatchMouseEvent": Page.dispatchMouseEventParameters;
|
||||
"Page.insertText": Page.insertTextParameters;
|
||||
"Page.crash": Page.crashParameters;
|
||||
|
|
@ -1086,6 +1093,7 @@ export module Protocol {
|
|||
"Page.getContentQuads": Page.getContentQuadsReturnValue;
|
||||
"Page.dispatchKeyEvent": Page.dispatchKeyEventReturnValue;
|
||||
"Page.dispatchTouchEvent": Page.dispatchTouchEventReturnValue;
|
||||
"Page.dispatchTapEvent": Page.dispatchTapEventReturnValue;
|
||||
"Page.dispatchMouseEvent": Page.dispatchMouseEventReturnValue;
|
||||
"Page.insertText": Page.insertTextReturnValue;
|
||||
"Page.crash": Page.crashReturnValue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue