(win)
| 306 | * @return {boolean} |
| 307 | */ |
| 308 | export function isShadowDomStreamingSupported(win) { |
| 309 | if (shadowDomStreamingSupported === undefined) { |
| 310 | shadowDomStreamingSupported = calcShadowDomStreamingSupported(win); |
| 311 | } |
| 312 | return shadowDomStreamingSupported; |
| 313 | } |
| 314 | |
| 315 | /** |
| 316 | * @param {!Window} win |
no test coverage detected