feat(webkit): bump to 1460 (#6124)

This commit is contained in:
Yury Semikhatsky 2021-04-07 08:55:16 -07:00 committed by GitHub
parent b37116d7b1
commit 09c175914e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -13,7 +13,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1457", "revision": "1460",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1443" "mac10.14": "1443"

View File

@ -4107,8 +4107,8 @@ might return multiple quads for inline nodes.
export type setDeviceMetricsOverrideParameters = { export type setDeviceMetricsOverrideParameters = {
width: number; width: number;
height: number; height: number;
deviceScaleFactor: number;
fixedLayout: boolean; fixedLayout: boolean;
deviceScaleFactor?: number;
} }
export type setDeviceMetricsOverrideReturnValue = { export type setDeviceMetricsOverrideReturnValue = {
} }
@ -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. * Indicates the coordinate system of the supplied rectangle.
*/ */
coordinateSystem: CoordinateSystem; coordinateSystem: CoordinateSystem;
/**
* By default, screenshot is inflated by device scale factor to avoid blurry image. This flag disables it.
*/
omitDeviceScaleFactor?: boolean;
} }
export type snapshotRectReturnValue = { export type snapshotRectReturnValue = {
/** /**