feat(webkit): bump to 1446 (#5844)

This commit is contained in:
Yury Semikhatsky 2021-03-16 17:23:42 -07:00 committed by GitHub
parent d81ebff414
commit 8df4dcb0de
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": "1443", "revision": "1446",
"download": true "download": true
}, },
{ {

View File

@ -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. * Composition due to association with an <iframe> element.
*/ */
iFrame?: boolean; 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. * Composition due to association with an element with a "backface-visibility: hidden" style.
*/ */
@ -7202,7 +7206,7 @@ the top of the viewport and Y increases as it proceeds towards the bottom of the
*/ */
export interface Frame { 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[]; actions: any[];
/** /**