@@ -4321,8 +4321,8 @@ public extension DocumentAndElementEventHandlers {
4321
4321
}
4322
4322
}
4323
4323
4324
- public class DocumentFragment: Node, NonElementParentNode, ParentNode {
4325
- @inlinable override public class var constructor: JSFunction? { JSObject.global[Strings.DocumentFragment].function }
4324
+ open class DocumentFragment: Node, NonElementParentNode, ParentNode {
4325
+ @inlinable override open class var constructor: JSFunction? { JSObject.global[Strings.DocumentFragment].function }
4326
4326
4327
4327
public required init(unsafelyWrapping jsObject: JSObject) {
4328
4328
super.init(unsafelyWrapping: jsObject)
@@ -4448,8 +4448,8 @@ public class DragEventInit: BridgedDictionary {
4448
4448
public var dataTransfer: DataTransfer?
4449
4449
}
4450
4450
4451
- public class Element: Node, ParentNode, NonDocumentTypeChildNode, ChildNode, Slottable, ARIAMixin, GeometryUtils {
4452
- @inlinable override public class var constructor: JSFunction? { JSObject.global[Strings.Element].function }
4451
+ open class Element: Node, ParentNode, NonDocumentTypeChildNode, ChildNode, Slottable, ARIAMixin, GeometryUtils {
4452
+ @inlinable override open class var constructor: JSFunction? { JSObject.global[Strings.Element].function }
4453
4453
4454
4454
public required init(unsafelyWrapping jsObject: JSObject) {
4455
4455
_namespaceURI = ReadonlyAttribute(jsObject: jsObject, name: Strings.namespaceURI)
@@ -12227,8 +12227,8 @@ public extension NavigatorPlugins {
12227
12227
@inlinable var pdfViewerEnabled: Bool { jsObject[Strings.pdfViewerEnabled].fromJSValue()! }
12228
12228
}
12229
12229
12230
- public class Node: EventTarget {
12231
- @inlinable override public class var constructor: JSFunction? { JSObject.global[Strings.Node].function }
12230
+ open class Node: EventTarget {
12231
+ @inlinable override open class var constructor: JSFunction? { JSObject.global[Strings.Node].function }
12232
12232
12233
12233
public required init(unsafelyWrapping jsObject: JSObject) {
12234
12234
_nodeType = ReadonlyAttribute(jsObject: jsObject, name: Strings.nodeType)
@@ -14350,8 +14350,8 @@ public enum ServiceWorkerUpdateViaCache: JSString, JSValueCompatible {
14350
14350
@inlinable public var jsValue: JSValue { rawValue.jsValue }
14351
14351
}
14352
14352
14353
- public class ShadowRoot: DocumentFragment, DocumentOrShadowRoot {
14354
- @inlinable override public class var constructor: JSFunction? { JSObject.global[Strings.ShadowRoot].function }
14353
+ open class ShadowRoot: DocumentFragment, DocumentOrShadowRoot {
14354
+ @inlinable override open class var constructor: JSFunction? { JSObject.global[Strings.ShadowRoot].function }
14355
14355
14356
14356
public required init(unsafelyWrapping jsObject: JSObject) {
14357
14357
_mode = ReadonlyAttribute(jsObject: jsObject, name: Strings.mode)
0 commit comments