(parentFrameCandidate: FrameBase)
| 322 | } |
| 323 | |
| 324 | private isNestedWithin(parentFrameCandidate: FrameBase): boolean { |
| 325 | let frameAncestor = this as FrameBase; |
| 326 | |
| 327 | while (frameAncestor) { |
| 328 | frameAncestor = getAncestor(frameAncestor, FrameBase); |
| 329 | if (frameAncestor === parentFrameCandidate) { |
| 330 | return true; |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | return false; |
| 335 | } |
| 336 | |
| 337 | private raiseCurrentPageNavigatedEvents(isBack: boolean) { |
| 338 | const page = this.currentPage; |
no test coverage detected