Skip to content

Commit

Permalink
feat(webkit): bump to 1460 (#6124)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Apr 7, 2021
1 parent b37116d commit 09c1759
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browsers.json
Expand Up @@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1457",
"revision": "1460",
"installByDefault": true,
"revisionOverrides": {
"mac10.14": "1443"
Expand Down
6 changes: 5 additions & 1 deletion src/server/webkit/protocol.ts
Expand Up @@ -4107,8 +4107,8 @@ might return multiple quads for inline nodes.
export type setDeviceMetricsOverrideParameters = {
width: number;
height: number;
deviceScaleFactor: number;
fixedLayout: boolean;
deviceScaleFactor?: number;
}
export type setDeviceMetricsOverrideReturnValue = {
}
Expand Down Expand Up @@ -6692,6 +6692,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Indicates the coordinate system of the supplied rectangle.
*/
coordinateSystem: CoordinateSystem;
/**
* By default, screenshot is inflated by device scale factor to avoid blurry image. This flag disables it.
*/
omitDeviceScaleFactor?: boolean;
}
export type snapshotRectReturnValue = {
/**
Expand Down

0 comments on commit 09c1759

Please sign in to comment.