feat(webkit): roll to r1823 (#22227)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Playwright Service 2023-04-06 02:52:48 -07:00 committed by GitHub
parent 08cef43e82
commit f610577a18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@
}, },
{ {
"name": "webkit", "name": "webkit",
"revision": "1821", "revision": "1823",
"installByDefault": true, "installByDefault": true,
"revisionOverrides": { "revisionOverrides": {
"mac10.14": "1446", "mac10.14": "1446",

View File

@ -1237,7 +1237,7 @@ export module Protocol {
/** /**
* The type of rendering context backing the canvas element. * The type of rendering context backing the canvas element.
*/ */
export type ContextType = "canvas-2d"|"bitmaprenderer"|"webgl"|"webgl2"; export type ContextType = "canvas-2d"|"offscreen-canvas-2d"|"bitmaprenderer"|"webgl"|"webgl2";
export type ProgramType = "compute"|"render"; export type ProgramType = "compute"|"render";
export type ShaderType = "compute"|"fragment"|"vertex"; export type ShaderType = "compute"|"fragment"|"vertex";
/** /**
@ -7652,7 +7652,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
/** /**
* The type of the recording. * The type of the recording.
*/ */
export type Type = "canvas-2d"|"canvas-bitmaprenderer"|"canvas-webgl"|"canvas-webgl2"; export type Type = "canvas-2d"|"offscreen-canvas-2d"|"canvas-bitmaprenderer"|"canvas-webgl"|"canvas-webgl2";
export type Initiator = "frontend"|"console"|"auto-capture"; export type Initiator = "frontend"|"console"|"auto-capture";
/** /**
* Information about the initial state of the recorded object. * Information about the initial state of the recorded object.