diff options
Diffstat (limited to 'files/ru/web/api/console/timeend/index.html')
-rw-r--r-- | files/ru/web/api/console/timeend/index.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ru/web/api/console/timeend/index.html b/files/ru/web/api/console/timeend/index.html index b25db28e60..e0ee61dea9 100644 --- a/files/ru/web/api/console/timeend/index.html +++ b/files/ru/web/api/console/timeend/index.html @@ -17,19 +17,19 @@ translation_of: Web/API/Console/timeEnd <p>{{AvailableInWorkers}}</p> -<h2 id="Syntax" name="Syntax">Синтаксис</h2> +<h2 id="Syntax">Синтаксис</h2> <pre class="brush: js">console.timeEnd(<code><var>label</var></code>); </pre> -<h3 id="Parameters" name="Parameters">Параметры</h3> +<h3 id="Parameters">Параметры</h3> <dl> <dt><code>label</code></dt> <dd>Метка таймера, который будет остановлен. Останавливается один раз. После остановки время отображается в <a href="/ru/docs/Tools/Web_Console" title="Web Console">Веб-консоли</a>.</dd> </dl> -<h2 id="Specification" name="Specification">Примеры</h2> +<h2 id="Specification">Примеры</h2> <pre class="brush: js">console.time("answer time"); alert("Click to continue"); @@ -43,7 +43,7 @@ console.timeEnd("answer time");</pre> <p>Обратите внимание, что метка таймера отображается как при вызове <code>timeLog()</code>, так и завершении таймера. Кроме того, вызов timeEnd() выводит дополнительную информацию "timer ended", чтобы очевидно показать, что таймер больше не отслеживается.</p> -<h2 id="Specification" name="Specification">Спецификация</h2> +<h2 id="Specification">Спецификация</h2> <table> <thead> @@ -62,13 +62,13 @@ console.timeEnd("answer time");</pre> </tbody> </table> -<h2 id="Browser_compatibility" name="Browser_compatibility">Совместимость с браузерами</h2> +<h2 id="Browser_compatibility">Совместимость с браузерами</h2> <div>{{Compat("api.Console.timeEnd")}}</div> <div id="compat-mobile"></div> -<h2 id="See_also" name="See_also">Смотрите также</h2> +<h2 id="See_also">Смотрите также</h2> <ul> <li>{{domxref("Console.time")}}</li> |