Skip to content

Commit 16a0a1e

Browse files
authored
[scoped-custom-element-registry] Safari Tech Preview 214 fix (#614)
Defines rather than assigns shadowRoot.customElements
1 parent 7185604 commit 16a0a1e

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

packages/scoped-custom-element-registry/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
<!-- ### Changed -->
1111
<!-- ### Fixed -->
1212

13+
## Unreleased
14+
15+
### Fixed
16+
17+
- Fixes [issue](https://github.com/webcomponents/polyfills/issues/613) with setting `shadowRoot.customElements` on Safari's native implementation
18+
1319
## [0.0.10] - 2025-02-26
1420

1521
### Added

packages/scoped-custom-element-registry/src/scoped-custom-element-registry.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,13 @@ Element.prototype.attachShadow = function (
681681
...(args as [])
682682
) as ShadowRootWithSettableCustomElements;
683683
if (registry !== undefined) {
684-
shadowRoot['customElements'] = shadowRoot['registry'] = registry;
684+
const descriptor = {
685+
value: registry,
686+
configurable: true,
687+
writable: true,
688+
};
689+
Object.defineProperty(shadowRoot, 'customElements', descriptor);
690+
Object.defineProperty(shadowRoot, 'registry', descriptor);
685691
}
686692
return shadowRoot;
687693
};

0 commit comments

Comments
 (0)