aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/window
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-09-30 00:53:33 +0000
committerMDN <actions@users.noreply.github.com>2021-09-30 00:53:33 +0000
commit9a06d5b4a3874caa094bff06895c892914eaea93 (patch)
tree1c9549ade620e59f4af4c5ee6b6ac7640bf4fcda /files/ru/web/api/window
parent75e5dcce1e3c6558a3a2d3def5c08669404587c4 (diff)
downloadtranslated-content-9a06d5b4a3874caa094bff06895c892914eaea93.tar.gz
translated-content-9a06d5b4a3874caa094bff06895c892914eaea93.tar.bz2
translated-content-9a06d5b4a3874caa094bff06895c892914eaea93.zip
[CRON] sync translated content
Diffstat (limited to 'files/ru/web/api/window')
-rw-r--r--files/ru/web/api/window/mozanimationstarttime/index.html46
-rw-r--r--files/ru/web/api/window/performance/index.html48
2 files changed, 0 insertions, 94 deletions
diff --git a/files/ru/web/api/window/mozanimationstarttime/index.html b/files/ru/web/api/window/mozanimationstarttime/index.html
deleted file mode 100644
index 52c4ce128c..0000000000
--- a/files/ru/web/api/window/mozanimationstarttime/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
----
-title: Window.mozAnimationStartTime
-slug: Web/API/Window/mozAnimationStartTime
-tags:
- - >-
- API HTML DOM NeedsExample NeedsMarkupWork NeedsSpecTable Property
- Reference Window
-translation_of: Web/API/Window/mozAnimationStartTime
----
-<p>{{ APIRef() }}</p>
-
-<p>{{ gecko_minversion_header("2.0") }}{{ non-standard_header() }}</p>
-
-<h3 id="Summary" name="Summary">Summary</h3>
-
-<p>Возвращает время в миллисекундах с начала эпохи UNIX, начиная с которого анимации, начавшиеся в определённый момент, должны быть сочтены уже начавшимися. Это значение должно быть использовано вместо, например, <code><a href="/en/JavaScript/Reference/Global_Objects/Date/now" title="en/JavaScript/Reference/Global Objects/Date/now">Date.now()</a></code>, потому что оно будет тем же самым для анимаций, начавшихся в этом окне в течение этого интервала, позволяя им синхронизироваться между собой.</p>
-
-<p>Это также позволяет анимациям JavaScript оставаться синхронизированными с CSS переходами и SMIL анимациями, запущенными в течение того же интервала обновления.</p>
-
-<h3 id="Syntax" name="Syntax">Syntax</h3>
-
-<pre class="eval"><em>time</em> = window.mozAnimationStartTime;
-</pre>
-
-<h3 id="Parameters" name="Parameters">Parameters</h3>
-
-<ul>
- <li><em><code>time</code></em> это время в миллисекундах с начала эпохи UNIX, начиная с которого анимации для текущего окна принимаются уже начавшимися.</li>
-</ul>
-
-<h3 id="Specification" name="Specification">Specification</h3>
-
-<p>Not part of specification.</p>
-
-<h3 id="Browser_compatibility">Browser compatibility</h3>
-
-
-
-<p>{{Compat("api.Window.mozAnimationStartTime")}}</p>
-
-<h3 id="See_also">See also</h3>
-
-<ul>
- <li>{{ domxref("window.mozRequestAnimationFrame()") }}</li>
- <li>{{ domxref("window.onmozbeforepaint") }}</li>
-</ul>
diff --git a/files/ru/web/api/window/performance/index.html b/files/ru/web/api/window/performance/index.html
deleted file mode 100644
index 7f765838c8..0000000000
--- a/files/ru/web/api/window/performance/index.html
+++ /dev/null
@@ -1,48 +0,0 @@
----
-title: Window.performance
-slug: Web/API/Window/performance
-translation_of: Web/API/Window/performance
----
-<div>{{APIREf}}</div>
-
-<p>The Web Performance API allows web pages access to certain functions for measuring the performance of web pages and web applications, including the <a href="/en-US/docs/Navigation_timing">Navigation Timing </a>API and high-resolution time data.</p>
-
-<h2 id="Methods" name="Methods">Methods</h2>
-
-<dl>
- <dt>{{domxref("Performance.mark()", "performance.mark()")}}</dt>
- <dd>Maps a {{domxref("DOMHighResTimeStamp")}} to a specified name representing the amount of milliseconds elapsed since a reference instant.</dd>
-</dl>
-
-<dl>
- <dt>{{domxref("Performance.now()", "performance.now()")}}</dt>
- <dd>Возвращает {{domxref("DOMHighResTimeStamp")}} представляющий количество миллисекунд прошедшее с момента отсчёта.</dd>
- <dt><code>measure()</code></dt>
- <dd>This method stores the <a href="http://www.w3.org/TR/hr-time/#domhighrestimestamp"><code>DOMHighResTimeStamp</code></a> duration between two marks along with the associated name (a "measure").</dd>
- <dt><strong><code>getEntriesByType()</code></strong></dt>
- <dd> </dd>
- <dt><strong><code>getEntriesByType()</code></strong></dt>
- <dd> </dd>
- <dt><strong><code>getEntriesByName()</code></strong></dt>
- <dd> </dd>
- <dt><code>clearMarks()</code></dt>
- <dd>
- <p>If the markName argument is not specified, this method removes all marks and their associated DOMHighResTimeStamp time values.</p>
-
- <p>If the markName argument is specified, this method removes all DOMHighResTimeStamp time values for the given mark name.</p>
-
- <p>If the markName argument is specified but the specified markName does not exist, this method will do nothing.<br>
-  </p>
- </dd>
-</dl>
-
-<h2 id="Properties" name="Properties">Properties</h2>
-
-<dl>
- <dt>{{domxref("Performance.timing", "performance.timing")}}</dt>
- <dd>Is a {{domxref("PerformanceTiming")}} object containing latency-related performance information.</dd>
- <dt>{{domxref("Performance.navigation", "performance.navigation")}}</dt>
- <dd>Is a {{domxref("PerformanceNavigation")}} object representing the type of navigation that occurs in the given browsing context, like the amount of redirections needed to fetch the resource.</dd>
- <dt><a href="https://docs.webplatform.org/wiki/apis/timing/properties/memory">performance.memory</a></dt>
- <dd>A non-standard extension added in Chrome.</dd>
-</dl>