Skip to content

Commit e67a282

Browse files
committed
copy generated files to baselines
1 parent 32c6440 commit e67a282

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

baselines/dom.generated.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8951,6 +8951,10 @@ interface HTMLVideoElement extends HTMLMediaElement {
89518951
* Gets or sets the height of the video element.
89528952
*/
89538953
height: number;
8954+
/**
8955+
* Gets or sets the playsinline of the video element. for example, On iPhone, video elements will now be allowed to play inline, and will not automatically enter fullscreen mode when playback begins.
8956+
*/
8957+
playsInline: boolean;
89548958
/**
89558959
* Gets or sets a URL of an image to display, for example, like a movie poster. This can be a still frame from the video, or another image if no video data is available.
89568960
*/

baselines/webworker.iterable.generated.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ interface Headers {
5050
values(): IterableIterator<string>;
5151
}
5252

53+
interface IDBDatabase {
54+
/**
55+
* Returns a new transaction with the given mode ("readonly" or "readwrite") and scope which can be a single object store name or an array of names.
56+
*/
57+
transaction(storeNames: string | Iterable<string>, mode?: IDBTransactionMode): IDBTransaction;
58+
}
59+
5360
interface IDBObjectStore {
5461
/**
5562
* Creates a new index in store with the given name, keyPath and options and returns a new IDBIndex. If the keyPath and options define constraints that cannot be satisfied with the data already in store the upgrade transaction will abort with a "ConstraintError" DOMException.

0 commit comments

Comments
 (0)