mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The navigation API is part of interop 2025. You can find the implementation status for each major browser here: https://wpt.fyi/results/navigation-api?label=master&label=experimental&aligned&view=interop&q=label%3Ainterop-2025-navigation https://developer.mozilla.org/en-US/docs/Web/API/Navigation_API BREAKING CHANGE: (test only) - `TestBed` now provides a fake `PlatformLocation` implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for `TestBed` by providing the `MockPlatformLocation` from `@angular/common/testing` in your providers: `{provide: PlatformLocation, useClass: MockPlatformLocation}` PR Close #63406
13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
export {
|
|
DomAdapter as ɵDomAdapter,
|
|
getDOM as ɵgetDOM,
|
|
setRootDomAdapter as ɵsetRootDomAdapter,
|
|
} from './dom_adapter';
|