/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/core/src/render3/namespaces.ts
14 строк
456 B
SkyZeroZx
fix(core): account for namespaces in host binding sanitization (#69558)
29 июл 2026, 18:36
29 июл 2026, 18:36
f57d5d5
Код
Авторство
О чём код?
/** * @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 */ import {MATH_ML_NAMESPACE, SVG_NAMESPACE} from '../sanitization/dom_security_schema'; export const NAMESPACE_URIS: Record<string, string> = { 'http://www.w3.org/2000/svg': SVG_NAMESPACE, 'http://www.w3.org/1998/Math/MathML': MATH_ML_NAMESPACE, };