@@ -5591,7 +5591,6 @@ interface GlobalEventHandlers {
55915591 * @param ev The event.
55925592 */
55935593 onscroll: ((this: GlobalEventHandlers, ev: Event) => any) | null;
5594- onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null;
55955594 /**
55965595 * Occurs when the seek operation ends.
55975596 * @param ev The event.
@@ -8511,7 +8510,6 @@ interface IDBTransactionEventMap {
85118510interface IDBTransaction extends EventTarget {
85128511 /** Returns the transaction's connection. */
85138512 readonly db: IDBDatabase;
8514- readonly durability: IDBTransactionDurability;
85158513 /** If the transaction was aborted, returns the error (a DOMException) providing the reason. */
85168514 readonly error: DOMException | null;
85178515 /** 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;
1734117339 * @param ev The event.
1734217340 */
1734317341declare var onscroll: ((this: Window, ev: Event) => any) | null;
17344- declare var onsecuritypolicyviolation: ((this: Window, ev: SecurityPolicyViolationEvent) => any) | null;
1734517342/**
1734617343 * Occurs when the seek operation ends.
1734717344 * @param ev The event.
@@ -17556,7 +17553,6 @@ type GamepadMappingType = "" | "standard" | "xr-standard";
1755617553type HdrMetadataType = "smpteSt2086" | "smpteSt2094-10" | "smpteSt2094-40";
1755717554type IDBCursorDirection = "next" | "nextunique" | "prev" | "prevunique";
1755817555type IDBRequestReadyState = "done" | "pending";
17559- type IDBTransactionDurability = "default" | "relaxed" | "strict";
1756017556type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1756117557type ImageOrientation = "flipY" | "none";
1756217558type ImageSmoothingQuality = "high" | "low" | "medium";
0 commit comments