diff options
author | MDN <actions@users.noreply.github.com> | 2021-07-07 00:36:00 +0000 |
---|---|---|
committer | MDN <actions@users.noreply.github.com> | 2021-07-07 00:36:00 +0000 |
commit | 751e4b6115b0d8f30a147dcba95a3e21445ba4de (patch) | |
tree | 3d63e324fe754f9b9f371f50394cfd55692ab32e /files/ru/orphaned/web/api/htmlorforeignelement | |
parent | 4f70db6399a732ca7571c6c8cb952be7c9a85763 (diff) | |
download | translated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.tar.gz translated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.tar.bz2 translated-content-751e4b6115b0d8f30a147dcba95a3e21445ba4de.zip |
[CRON] sync translated content
Diffstat (limited to 'files/ru/orphaned/web/api/htmlorforeignelement')
-rw-r--r-- | files/ru/orphaned/web/api/htmlorforeignelement/nonce/index.html | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/files/ru/orphaned/web/api/htmlorforeignelement/nonce/index.html b/files/ru/orphaned/web/api/htmlorforeignelement/nonce/index.html new file mode 100644 index 0000000000..e3350c6072 --- /dev/null +++ b/files/ru/orphaned/web/api/htmlorforeignelement/nonce/index.html @@ -0,0 +1,43 @@ +--- +title: HTMLElement.nonce +slug: orphaned/Web/API/HTMLOrForeignElement/nonce +translation_of: Web/API/HTMLOrForeignElement/nonce +original_slug: Web/API/HTMLOrForeignElement/nonce +--- +<p>{{SeeCompatTable}}{{APIRef("HTML DOM")}}</p> + +<p>Свойство <strong><code>nonce</code></strong> интерфейса {{domxref("HTMLElement")}} возвращает криптографический номер, который используется политикой безопасности содержимого для определения того, будет ли разрешена дальнейшая работа с данной выборкой.</p> + +<p>В более поздних реализациях элементы, имеющие атрибут nonce, предоставляют его только скриптам (а не сторонним каналам, таким как селекторы атрибутов CSS).</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="syntaxbox">var <em>nonce</em> = HTMLElement.nonce +HTMLElement.nonce = <em>nonce</em></pre> + +<h3 id="Value">Value</h3> + +<p>Криптографический код.</p> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + <tr> + <td>{{SpecName('HTML WHATWG','#attr-nonce','nonce')}}</td> + <td>{{Spec2('HTML WHATWG')}}</td> + <td>Первоначальное определение.</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_Compatibility">Browser Compatibility</h2> + +<div> +<p>{{Compat("api.HTMLElement.nonce")}}</p> +</div> |