| 123456789101112131415161718192021222324 |
- "use strict";
- /**
- * @license
- * SPDX-License-Identifier: Apache-2.0
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SECURITY_SENSITIVE_ATTRIBUTES = void 0;
- // AUTOGENERATED. DO NOT EDIT.
- /**
- * Security sensitive attribute names that should not be set through
- * `setAttribute` or similar functions.
- */
- exports.SECURITY_SENSITIVE_ATTRIBUTES = [
- 'href',
- 'rel',
- 'src',
- 'srcdoc',
- 'action',
- 'formaction',
- 'sandbox',
- 'cite',
- 'poster',
- 'icon',
- ];
|