@@ -5591,7 +5591,6 @@ interface GlobalEventHandlers {
5591
5591
* @param ev The event.
5592
5592
*/
5593
5593
onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5594
- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
5595
5594
/**
5596
5595
* Occurs when the seek operation ends.
5597
5596
* @param ev The event.
@@ -8511,7 +8510,6 @@ interface IDBTransactionEventMap {
8511
8510
interface IDBTransaction extends EventTarget {
8512
8511
/** Returns the transaction's connection. */
8513
8512
readonly db: IDBDatabase;
8514
- readonly durability: IDBTransactionDurability;
8515
8513
/** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
8516
8514
readonly error: DOMException | null;
8517
8515
/** Returns the mode the transaction was created with ("readonly" or "readwrite"), or "versionchange" for an upgrade transaction. */
@@ -17341,7 +17339,6 @@ declare var onresize: ((this: Window, ev: UIEvent) => any) | null;
17341
17339
* @param ev The event.
17342
17340
*/
17343
17341
declare var onscroll: ((this: Window, ev: Event) => any) | null;
17344
- declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
17345
17342
/**
17346
17343
* Occurs when the seek operation ends.
17347
17344
* @param ev The event.
@@ -17556,7 +17553,6 @@ type GamepadMappingType = "" | "standard" | "xr-standard";
17556
17553
type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
17557
17554
type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
17558
17555
type IDBRequestReadyState = "done" | "pending";
17559
- type IDBTransactionDurability = "default" | "relaxed" | "strict";
17560
17556
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
17561
17557
type ImageOrientation = "flipY" | "none";
17562
17558
type ImageSmoothingQuality = "high" | "low" | "medium";
0 commit comments