(win)
| 637 | * @param {!Window} win |
| 638 | */ |
| 639 | export function stubLegacyElements(win) { |
| 640 | LEGACY_ELEMENTS.forEach((name) => { |
| 641 | stubElementIfNotKnown(win, name); |
| 642 | }); |
| 643 | } |
| 644 | |
| 645 | /** |
| 646 | * Copy builtins to a child window. |
no test coverage detected