2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. 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.io/license
|
|
|
|
*/
|
|
|
|
|
2016-04-28 17:50:03 -07:00
|
|
|
import {DomAdapter} from '../dom/dom_adapter';
|
2016-06-08 16:38:52 -07:00
|
|
|
|
2015-10-14 09:41:15 -07:00
|
|
|
|
2015-03-09 11:35:46 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides DOM operations in any browser environment.
|
2016-08-17 13:42:18 -07:00
|
|
|
*
|
|
|
|
* @security Tread carefully! Interacting with the DOM directly is dangerous and
|
|
|
|
* can introduce XSS risks.
|
2015-03-09 11:35:46 +01:00
|
|
|
*/
|
2015-09-25 14:48:17 -07:00
|
|
|
export abstract class GenericBrowserDomAdapter extends DomAdapter {
|
2019-08-22 17:49:43 -07:00
|
|
|
constructor() { super(); }
|
2015-10-14 09:41:15 -07:00
|
|
|
|
2015-05-12 11:19:47 -07:00
|
|
|
supportsDOMEvents(): boolean { return true; }
|
2015-03-09 11:35:46 +01:00
|
|
|
}
|