()
| 192 | } |
| 193 | |
| 194 | findContainer() { |
| 195 | const htmlElement = window.document.querySelector("html"); |
| 196 | let element = this.deepActive(window.document); |
| 197 | |
| 198 | while (element && element !== htmlElement) { |
| 199 | const closestScopeEl = element.closest<HTMLElement>("[data-sap-ui-fastnavgroup-container='true']"); |
| 200 | |
| 201 | if (closestScopeEl) { |
| 202 | return closestScopeEl; |
| 203 | } |
| 204 | |
| 205 | element = getParentElement(element); |
| 206 | } |
| 207 | |
| 208 | return document.body; |
| 209 | } |
| 210 | |
| 211 | setSelectedGroup(root: DocumentOrShadowRoot = window.document) { |
| 212 | const htmlElement = window.document.querySelector("html"); |
no test coverage detected