Skip to content

Commit

Permalink
feat(webkit): bump to 1446 (#5844)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s authored Mar 17, 2021
1 parent d81ebff commit 8df4dcb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browsers.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
{
"name": "webkit",
"revision": "1443",
"revision": "1446",
"download": true
},
{
Expand Down
6 changes: 5 additions & 1 deletion src/server/webkit/protocol.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4839,6 +4839,10 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
* Composition due to association with an <iframe> element.
*/
iFrame?: boolean;
/**
* Composition due to association with a <model> element.
*/
model?: boolean;
/**
* Composition due to association with an element with a "backface-visibility: hidden" style.
*/
Expand Down Expand Up @@ -7202,7 +7206,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/
export interface Frame {
/**
* Information about an action made to the recorded object. Follows the structure [name, parameters, swizzleTypes, trace], where name is a string, parameters is an array, swizzleTypes is an array, and trace is an array.
* Information about an action made to the recorded object. Follows the structure [name, parameters, swizzleTypes, trace, snapshot], where name is a string, parameters is an array, swizzleTypes is an array, trace is an array, and snapshot is a data URL image of the current contents after this action.
*/
actions: any[];
/**
Expand Down

0 comments on commit 8df4dcb

Please sign in to comment.