@@ -4321,8 +4321,8 @@ public extension DocumentAndElementEventHandlers {
43214321 }
43224322}
43234323
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 }
43264326
43274327 public required init(unsafelyWrapping jsObject: JSObject) {
43284328 super.init(unsafelyWrapping: jsObject)
@@ -4448,8 +4448,8 @@ public class DragEventInit: BridgedDictionary {
44484448 public var dataTransfer: DataTransfer?
44494449}
44504450
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 }
44534453
44544454 public required init(unsafelyWrapping jsObject: JSObject) {
44554455 _namespaceURI = ReadonlyAttribute(jsObject: jsObject, name: Strings.namespaceURI)
@@ -12227,8 +12227,8 @@ public extension NavigatorPlugins {
1222712227 @inlinable var pdfViewerEnabled: Bool { jsObject[Strings.pdfViewerEnabled].fromJSValue()! }
1222812228}
1222912229
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 }
1223212232
1223312233 public required init(unsafelyWrapping jsObject: JSObject) {
1223412234 _nodeType = ReadonlyAttribute(jsObject: jsObject, name: Strings.nodeType)
@@ -14350,8 +14350,8 @@ public enum ServiceWorkerUpdateViaCache: JSString, JSValueCompatible {
1435014350 @inlinable public var jsValue: JSValue { rawValue.jsValue }
1435114351}
1435214352
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 }
1435514355
1435614356 public required init(unsafelyWrapping jsObject: JSObject) {
1435714357 _mode = ReadonlyAttribute(jsObject: jsObject, name: Strings.mode)
0 commit comments