File tree 2 files changed +18
-3
lines changed
2 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' number-flow ' : patch
3
+ ---
4
+
5
+ Fix errors in browsers that don't support attachInternals (see #127 )
Original file line number Diff line number Diff line change @@ -137,8 +137,13 @@ export default class NumberFlowLite extends ServerSafeHTMLElement implements Pro
137
137
// This will overwrite the DSD if any:
138
138
this . attachShadow ( { mode : 'open' } )
139
139
140
- this . _internals ??= this . attachInternals ( )
141
- this . _internals . role = 'img'
140
+ try {
141
+ this . _internals ??= this . attachInternals ( )
142
+ this . _internals . role = 'img'
143
+ } catch {
144
+ // Don't error in old browsers that don't support ElementInternals
145
+ // Try/catch is less code than an if check.
146
+ }
142
147
143
148
// Add stylesheet
144
149
if ( typeof CSSStyleSheet !== 'undefined' && this . shadowRoot ! . adoptedStyleSheets ) {
@@ -193,7 +198,12 @@ export default class NumberFlowLite extends ServerSafeHTMLElement implements Pro
193
198
if ( ! this . batched ) this . didUpdate ( )
194
199
}
195
200
196
- this . _internals ! . ariaLabel = data . valueAsString
201
+ try {
202
+ this . _internals ! . ariaLabel = data . valueAsString
203
+ } catch {
204
+ // Don't error in old browsers that don't support ElementInternals
205
+ // Try/catch is less code than an if check.
206
+ }
197
207
}
198
208
199
209
/**
You can’t perform that action at this time.
0 commit comments