aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/node/contains
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-20 13:28:52 +0300
committerGitHub <noreply@github.com>2021-10-20 13:28:52 +0300
commit1386fed7d38652d5848d315927e7e23a66cffd13 (patch)
treeeb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/api/node/contains
parentb0f32a46245b1033098a5a9826a7818fa4e65dde (diff)
downloadtranslated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.gz
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.bz2
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.zip
[RU] Remove `name` attribute from headings (#2788)
Diffstat (limited to 'files/ru/web/api/node/contains')
-rw-r--r--files/ru/web/api/node/contains/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/api/node/contains/index.html b/files/ru/web/api/node/contains/index.html
index ddc0830840..0bb74e9e07 100644
--- a/files/ru/web/api/node/contains/index.html
+++ b/files/ru/web/api/node/contains/index.html
@@ -12,7 +12,7 @@ translation_of: Web/API/Node/contains
<div>Метод <strong><code>Node.contains()</code></strong> возвращает {{jsxref ("Boolean")}} значение, указывающее, является ли узел потомком данного узла, т. е. сам узел, один из его прямых потомков ({{domxref ("Node. childNodes "," childNodes ")}}), один из детей его детей и так далее.</div>
-<h2 id="Summary" name="Summary">Синтаксис</h2>
+<h2 id="Summary">Синтаксис</h2>
<pre class="syntaxbox">node.contains( otherNode )
</pre>
@@ -22,7 +22,7 @@ translation_of: Web/API/Node/contains
<li><code>otherNode</code> элемент с которым производится сравнение.</li>
</ul>
-<h2 id="Example" name="Example">Пример</h2>
+<h2 id="Example">Пример</h2>
<p>Эта функция проверяет, находится ли элемент в теле страницы.</p>
@@ -30,7 +30,7 @@ translation_of: Web/API/Node/contains
return (node === document.body) ? false : document.body.contains(node);
}</pre>
-<h2 id="Specifications" name="Specifications">Спецификация</h2>
+<h2 id="Specifications">Спецификация</h2>
<table class="standard-table">
<thead>
@@ -49,13 +49,13 @@ translation_of: Web/API/Node/contains
</tbody>
</table>
-<h2 id="Browser_compatibility" name="Browser_compatibility">Поддержка браузерами</h2>
+<h2 id="Browser_compatibility">Поддержка браузерами</h2>
<p>{{Compat("api.Node.contains")}}</p>
-<h2 id="See_also" name="See_also">Смотрите также</h2>
+<h2 id="See_also">Смотрите также</h2>
<ul>
<li>{{domxref("Node.compareDocumentPosition")}}</li>