Skip to content

Commit 6198067

Browse files
feat(webkit): roll to r2150 (#35267)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f274345 commit 6198067

File tree

2 files changed

+2
-23
lines changed

2 files changed

+2
-23
lines changed

packages/playwright-core/browsers.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
{
4141
"name": "webkit",
42-
"revision": "2149",
42+
"revision": "2150",
4343
"installByDefault": true,
4444
"revisionOverrides": {
4545
"debian11-x64": "2105",

packages/playwright-core/src/server/webkit/protocol.d.ts

+1-22
Original file line numberDiff line numberDiff line change
@@ -2207,23 +2207,6 @@ export module Protocol {
22072207
width: number;
22082208
height: number;
22092209
}
2210-
/**
2211-
* Data to construct File object.
2212-
*/
2213-
export interface FilePayload {
2214-
/**
2215-
* File name.
2216-
*/
2217-
name: string;
2218-
/**
2219-
* File type.
2220-
*/
2221-
type: string;
2222-
/**
2223-
* Base64-encoded file data.
2224-
*/
2225-
data: string;
2226-
}
22272210

22282211
/**
22292212
* Fired when <code>Document</code> has been totally updated. Node ids are no longer valid.
@@ -3286,14 +3269,10 @@ might return multiple quads for inline nodes.
32863269
* Input element handle.
32873270
*/
32883271
objectId: Runtime.RemoteObjectId;
3289-
/**
3290-
* Files to set
3291-
*/
3292-
files?: FilePayload[];
32933272
/**
32943273
* File paths to set
32953274
*/
3296-
paths?: string[];
3275+
paths: string[];
32973276
}
32983277
export type setInputFilesReturnValue = {
32993278
}

0 commit comments

Comments
 (0)