mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Previously, `platformBrowserTesting` did not include any `platformBrowser` providers, causing an inconsistency with `platformBrowserDynamicTesting`. This update resolves the issue by restructuring platform inheritance to ensure proper provider inclusion: - `platformCore → platformBrowser → platformBrowserTesting` - `platformBrowser → platformBrowserDynamic → platformBrowserDynamicTesting` Now, `platformBrowserTesting` correctly inherits from `platformBrowser`, aligning with the expected behavior. PR Close #60480
18 lines
986 B
TypeScript
18 lines
986 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 {ɵgetDOM} from '@angular/common';
|
|
export {BrowserDomAdapter as ɵBrowserDomAdapter} from './browser/browser_adapter';
|
|
export {BrowserGetTestability as ɵBrowserGetTestability} from './browser/testability';
|
|
export {DomRendererFactory2 as ɵDomRendererFactory2} from './dom/dom_renderer';
|
|
export {DomEventsPlugin as ɵDomEventsPlugin} from './dom/events/dom_events';
|
|
export {HammerGesturesPlugin as ɵHammerGesturesPlugin} from './dom/events/hammer_gestures';
|
|
export {KeyEventsPlugin as ɵKeyEventsPlugin} from './dom/events/key_events';
|
|
export {SharedStylesHost as ɵSharedStylesHost} from './dom/shared_styles_host';
|
|
export {RuntimeErrorCode as ɵRuntimeErrorCode} from './errors';
|
|
export {DomSanitizerImpl as ɵDomSanitizerImpl} from './security/dom_sanitization_service';
|