mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(webkit): roll to r1904 (#26855)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
f219f9fd41
commit
94c1b749b2
@ -39,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "webkit",
|
"name": "webkit",
|
||||||
"revision": "1902",
|
"revision": "1904",
|
||||||
"installByDefault": true,
|
"installByDefault": true,
|
||||||
"revisionOverrides": {
|
"revisionOverrides": {
|
||||||
"mac10.14": "1446",
|
"mac10.14": "1446",
|
||||||
|
@ -1297,6 +1297,14 @@ export module Protocol {
|
|||||||
* The type of rendering context backing the canvas.
|
* The type of rendering context backing the canvas.
|
||||||
*/
|
*/
|
||||||
contextType: ContextType;
|
contextType: ContextType;
|
||||||
|
/**
|
||||||
|
* Width of the canvas in pixels.
|
||||||
|
*/
|
||||||
|
width: number;
|
||||||
|
/**
|
||||||
|
* Height of the canvas in pixels.
|
||||||
|
*/
|
||||||
|
height: number;
|
||||||
/**
|
/**
|
||||||
* The corresponding DOM node id.
|
* The corresponding DOM node id.
|
||||||
*/
|
*/
|
||||||
@ -1339,6 +1347,20 @@ export module Protocol {
|
|||||||
*/
|
*/
|
||||||
canvasId: CanvasId;
|
canvasId: CanvasId;
|
||||||
}
|
}
|
||||||
|
export type canvasSizeChangedPayload = {
|
||||||
|
/**
|
||||||
|
* Identifier of canvas that changed.
|
||||||
|
*/
|
||||||
|
canvasId: CanvasId;
|
||||||
|
/**
|
||||||
|
* Width of the canvas in pixels.
|
||||||
|
*/
|
||||||
|
width: number;
|
||||||
|
/**
|
||||||
|
* Height of the canvas in pixels.
|
||||||
|
*/
|
||||||
|
height: number;
|
||||||
|
}
|
||||||
export type canvasMemoryChangedPayload = {
|
export type canvasMemoryChangedPayload = {
|
||||||
/**
|
/**
|
||||||
* Identifier of canvas that changed.
|
* Identifier of canvas that changed.
|
||||||
@ -9088,6 +9110,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
|
|||||||
"CSS.nodeLayoutFlagsChanged": CSS.nodeLayoutFlagsChangedPayload;
|
"CSS.nodeLayoutFlagsChanged": CSS.nodeLayoutFlagsChangedPayload;
|
||||||
"Canvas.canvasAdded": Canvas.canvasAddedPayload;
|
"Canvas.canvasAdded": Canvas.canvasAddedPayload;
|
||||||
"Canvas.canvasRemoved": Canvas.canvasRemovedPayload;
|
"Canvas.canvasRemoved": Canvas.canvasRemovedPayload;
|
||||||
|
"Canvas.canvasSizeChanged": Canvas.canvasSizeChangedPayload;
|
||||||
"Canvas.canvasMemoryChanged": Canvas.canvasMemoryChangedPayload;
|
"Canvas.canvasMemoryChanged": Canvas.canvasMemoryChangedPayload;
|
||||||
"Canvas.extensionEnabled": Canvas.extensionEnabledPayload;
|
"Canvas.extensionEnabled": Canvas.extensionEnabledPayload;
|
||||||
"Canvas.clientNodesChanged": Canvas.clientNodesChangedPayload;
|
"Canvas.clientNodesChanged": Canvas.clientNodesChangedPayload;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user