@@ -297,11 +297,6 @@ public class AbortSignal: EventTarget {
297297 return this[Strings.timeout].function!(this: this, arguments: [_toJSValue(milliseconds)]).fromJSValue()!
298298 }
299299
300- @inlinable public class func any(signals: [AbortSignal]) -> Self {
301- let this = constructor!
302- return this[Strings.any].function!(this: this, arguments: [_toJSValue(signals)]).fromJSValue()!
303- }
304-
305300 @ReadonlyAttribute
306301 public var aborted: Bool
307302
@@ -6948,9 +6943,9 @@ public class HTMLElement: Element, GlobalEventHandlers, ElementContentEditable,
69486943 _ = this[Strings.hidePopover].function!(this: this, arguments: [])
69496944 }
69506945
6951- @inlinable public func togglePopover(force: Bool? = nil) -> Bool {
6946+ @inlinable public func togglePopover(force: Bool? = nil) {
69526947 let this = jsObject
6953- return this[Strings.togglePopover].function!(this: this, arguments: [_toJSValue(force)]).fromJSValue()!
6948+ _ = this[Strings.togglePopover].function!(this: this, arguments: [_toJSValue(force)])
69546949 }
69556950
69566951 @ReadWriteAttribute
@@ -13498,11 +13493,6 @@ public class ReadableStream: JSBridgedClass, AsyncSequence {
1349813493 self.init(unsafelyWrapping: Self.constructor!.new(arguments: [_toJSValue(underlyingSource), _toJSValue(strategy)]))
1349913494 }
1350013495
13501- @inlinable public class func from(asyncIterable: JSValue) -> Self {
13502- let this = constructor!
13503- return this[Strings.from].function!(this: this, arguments: [_toJSValue(asyncIterable)]).fromJSValue()!
13504- }
13505-
1350613496 @ReadonlyAttribute
1350713497 public var locked: Bool
1350813498
@@ -16868,7 +16858,7 @@ public class VideoFrame: JSBridgedClass {
1686816858}
1686916859
1687016860public class VideoFrameBufferInit: BridgedDictionary {
16871- public convenience init(format: VideoPixelFormat, codedWidth: UInt32, codedHeight: UInt32, timestamp: Int64, duration: UInt64, layout: [PlaneLayout], visibleRect: DOMRectInit, displayWidth: UInt32, displayHeight: UInt32, colorSpace: VideoColorSpaceInit, transfer: [ArrayBuffer] ) {
16861+ public convenience init(format: VideoPixelFormat, codedWidth: UInt32, codedHeight: UInt32, timestamp: Int64, duration: UInt64, layout: [PlaneLayout], visibleRect: DOMRectInit, displayWidth: UInt32, displayHeight: UInt32, colorSpace: VideoColorSpaceInit) {
1687216862 let object = JSObject.global[Strings.Object].function!.new()
1687316863 object[Strings.format] = _toJSValue(format)
1687416864 object[Strings.codedWidth] = _toJSValue(codedWidth)
@@ -16880,7 +16870,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
1688016870 object[Strings.displayWidth] = _toJSValue(displayWidth)
1688116871 object[Strings.displayHeight] = _toJSValue(displayHeight)
1688216872 object[Strings.colorSpace] = _toJSValue(colorSpace)
16883- object[Strings.transfer] = _toJSValue(transfer)
1688416873 self.init(unsafelyWrapping: object)
1688516874 }
1688616875
@@ -16895,7 +16884,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
1689516884 _displayWidth = ReadWriteAttribute(jsObject: object, name: Strings.displayWidth)
1689616885 _displayHeight = ReadWriteAttribute(jsObject: object, name: Strings.displayHeight)
1689716886 _colorSpace = ReadWriteAttribute(jsObject: object, name: Strings.colorSpace)
16898- _transfer = ReadWriteAttribute(jsObject: object, name: Strings.transfer)
1689916887 super.init(unsafelyWrapping: object)
1690016888 }
1690116889
@@ -16928,9 +16916,6 @@ public class VideoFrameBufferInit: BridgedDictionary {
1692816916
1692916917 @ReadWriteAttribute
1693016918 public var colorSpace: VideoColorSpaceInit
16931-
16932- @ReadWriteAttribute
16933- public var transfer: [ArrayBuffer]
1693416919}
1693516920
1693616921public class VideoFrameCopyToOptions: BridgedDictionary {
@@ -18718,7 +18703,6 @@ public class XSLTProcessor: JSBridgedClass {
1871818703 @usableFromInline static let ancestorOrigins: JSString = "ancestorOrigins"
1871918704 @usableFromInline static let anchors: JSString = "anchors"
1872018705 @usableFromInline static let animated: JSString = "animated"
18721- @usableFromInline static let any: JSString = "any"
1872218706 @usableFromInline static let appCodeName: JSString = "appCodeName"
1872318707 @usableFromInline static let appName: JSString = "appName"
1872418708 @usableFromInline static let appVersion: JSString = "appVersion"
@@ -19152,7 +19136,6 @@ public class XSLTProcessor: JSBridgedClass {
1915219136 @usableFromInline static let frameRate: JSString = "frameRate"
1915319137 @usableFromInline static let framerate: JSString = "framerate"
1915419138 @usableFromInline static let frames: JSString = "frames"
19155- @usableFromInline static let from: JSString = "from"
1915619139 @usableFromInline static let fromBox: JSString = "fromBox"
1915719140 @usableFromInline static let fromFloat32Array: JSString = "fromFloat32Array"
1915819141 @usableFromInline static let fromFloat64Array: JSString = "fromFloat64Array"
0 commit comments