diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-20 13:28:52 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 13:28:52 +0300 |
commit | 1386fed7d38652d5848d315927e7e23a66cffd13 (patch) | |
tree | eb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/javascript/reference/global_objects/internalerror/index.html | |
parent | b0f32a46245b1033098a5a9826a7818fa4e65dde (diff) | |
download | translated-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/javascript/reference/global_objects/internalerror/index.html')
-rw-r--r-- | files/ru/web/javascript/reference/global_objects/internalerror/index.html | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/files/ru/web/javascript/reference/global_objects/internalerror/index.html b/files/ru/web/javascript/reference/global_objects/internalerror/index.html index 060805655a..435290177d 100644 --- a/files/ru/web/javascript/reference/global_objects/internalerror/index.html +++ b/files/ru/web/javascript/reference/global_objects/internalerror/index.html @@ -11,13 +11,13 @@ translation_of: Web/JavaScript/Reference/Global_Objects/InternalError --- <div>{{JSRef("Global_Objects", "Error", "EvalError,InternalError,RangeError,ReferenceError,SyntaxError,TypeError,URIError")}} {{non-standard_header}}</div> -<h2 id="Summary" name="Summary">Сводка</h2> +<h2 id="Summary">Сводка</h2> <p>Объект <code><strong>InternalError</strong></code> представляет ошибку, возникающую внутри движка JavaScript. Например: "InternalError: too much recursion".</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="syntaxbox"><code>new InternalError([<var>message</var>[, <var>fileName</var>[, <var>lineNumber</var>]]])</code></pre> -<h3 id="Parameters" name="Parameters">Параметры</h3> +<h3 id="Parameters">Параметры</h3> <dl> <dt><code>message</code></dt> <dd>Необязательный параметр. Человеко-читаемое описание ошибки.</dd> @@ -27,7 +27,7 @@ translation_of: Web/JavaScript/Reference/Global_Objects/InternalError <dd>Необязательный параметр. Номер строки кода, вызвавшей исключение.</dd> </dl> -<h2 id="Description" name="Description">Описание</h2> +<h2 id="Description">Описание</h2> <p>Исключение <code>InternalError</code> выбрасывается при возникновении внутренней ошибки в движке JavaScript.</p> <p>Как правило, эти ошибки связаны с тем, что что-то стало слишком большим, либо чего-то стало слишком много, например:</p> <ul> @@ -37,30 +37,30 @@ translation_of: Web/JavaScript/Reference/Global_Objects/InternalError <li>"too much recursion" — слишком глубокая рекурсия.</li> </ul> -<h2 id="Properties" name="Properties">Свойства</h2> +<h2 id="Properties">Свойства</h2> <dl> <dt>{{jsxref("InternalError.prototype")}}</dt> <dd>Позволяет добавлять свойства в объект <code>InternalError</code>.</dd> </dl> -<h2 id="Methods" name="Methods">Методы</h2> +<h2 id="Methods">Методы</h2> <p>Глобальный объект <code>InternalError</code> не содержит собственных методов, однако, он наследует некоторые методы из цепочки прототипов.</p> -<h2 id="InternalError_instances" name="InternalError_instances">Экземпляры объекта <code>InternalError</code></h2> +<h2 id="InternalError_instances">Экземпляры объекта <code>InternalError</code></h2> -<h3 id="Properties_of_InternalError_instances" name="Properties_of_InternalError_instances">Свойства</h3> +<h3 id="Properties_of_InternalError_instances">Свойства</h3> <div>{{page('/ru/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', 'Properties')}}</div> -<h3 id="Methods_of_InternalError_instances" name="Methods_of_InternalError_instances">Методы</h3> +<h3 id="Methods_of_InternalError_instances">Методы</h3> <div>{{page('/ru/Web/JavaScript/Reference/Global_Objects/InternalError/prototype', 'Methods')}}</div> -<h2 id="Specifications" name="Specifications">Спецификации</h2> +<h2 id="Specifications">Спецификации</h2> <p>Не является частью какой-либо спецификации.</p> -<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2> +<h2 id="Browser_compatibility">Совместимость с браузерами</h2> <p>{{Compat}}</p> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li>{{jsxref("Error")}}</li> <li>{{jsxref("InternalError.prototype")}}</li> |