From 38e130aecf32de0ce241805acfe1894da5828d30 Mon Sep 17 00:00:00 2001 From: Roman Deev Date: Sat, 3 Aug 2024 13:30:44 +0300 Subject: [PATCH 1/2] [ru] update links to the Performance tool --- files/ru/web/api/console/timestamp_static/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/ru/web/api/console/timestamp_static/index.md b/files/ru/web/api/console/timestamp_static/index.md index a3e198dbf7b903..fc3df0e608563c 100644 --- a/files/ru/web/api/console/timestamp_static/index.md +++ b/files/ru/web/api/console/timestamp_static/index.md @@ -5,7 +5,7 @@ slug: Web/API/console/timestamp_static {{APIRef("Console API")}}{{Non-standard_header}} -Добавляет маркер в браузерные инструменты [Performance](https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/reference) или [Waterfall](/ru/docs/Tools/Performance/Waterfall). Это помогает соотнести точку в вашем коде с другими записанными событиями. +Добавляет маркер в браузерные инструменты измерения производительности ([Firefox](https://profiler.firefox.com/docs/#/), [Chrome](https://developer.chrome.com/docs/devtools/performance/reference)). Это помогает соотнести точку в вашем коде с другими записанными событиями. {{AvailableInWorkers}} From 7fd2bc37861b24932f43e3ad29245ad7256a5e31 Mon Sep 17 00:00:00 2001 From: Leonid Vinogradov Date: Mon, 5 Aug 2024 00:21:41 +0300 Subject: [PATCH 2/2] update translation --- .../web/api/console/timestamp_static/index.md | 31 ++++++++++++------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/files/ru/web/api/console/timestamp_static/index.md b/files/ru/web/api/console/timestamp_static/index.md index fc3df0e608563c..b1f00895934e13 100644 --- a/files/ru/web/api/console/timestamp_static/index.md +++ b/files/ru/web/api/console/timestamp_static/index.md @@ -1,24 +1,32 @@ --- -title: Console.timeStamp() +title: "console: статический метод timeStamp()" slug: Web/API/console/timestamp_static +l10n: + sourceCommit: 0c3f18aca2c8a93d3982183f64bf7762c2c310b0 --- -{{APIRef("Console API")}}{{Non-standard_header}} +{{APIRef("Console API")}}{{Non-standard_header}} {{AvailableInWorkers}} -Добавляет маркер в браузерные инструменты измерения производительности ([Firefox](https://profiler.firefox.com/docs/#/), [Chrome](https://developer.chrome.com/docs/devtools/performance/reference)). Это помогает соотнести точку в вашем коде с другими записанными событиями. +Статический метод **`console.timeStamp()`** добавляет в браузерные инструменты измерения производительности ([Firefox](https://profiler.firefox.com/docs/#/), [Chrome](https://developer.chrome.com/docs/devtools/performance/reference)). Это позволяет сопоставить точку в коде с другими событиями, записанными на временной шкале, такими как события компоновки и отрисовки. + +Дополнительно можно передать аргумент для обозначения отметки времени, и эта метка будет отображаться рядом с маркером. {{AvailableInWorkers}} ## Синтаксис +```js-nolint +timeStamp(label) ``` -console.timeStamp(label); -``` -## Параметры +### Параметры + +- `label` {{Optional_Inline}} + - : Название метки. + +### Возвращаемое значение -- `label` - - : Название метки. Необязательный параметр. +Нет ({{jsxref("undefined")}}). ## Совместимость с браузерами @@ -26,6 +34,7 @@ console.timeStamp(label); ## Смотрите также -- {{domxref("Console.time()")}} -- {{domxref("Console.timeEnd()")}} -- [Adding timestamps to the Waterfall](/ru/docs/Tools/Performance/Waterfall#Timestamp_markers) +- {{domxref("console/time_static", "console.time()")}} +- {{domxref("console/timeLog_static", "console.timeLog()")}} +- {{domxref("console/timeEnd_static", "console.timeEnd()")}} +- [Adding markers with the console API](https://web.archive.org/web/20211207010020/https://firefox-source-docs.mozilla.org/devtools-user/performance/waterfall/index.html#adding-markers-with-the-console-api)