aboutsummaryrefslogtreecommitdiff
path: root/files/ru/tools/web_console
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-27 02:31:24 +0300
committerGitHub <noreply@github.com>2021-10-27 02:31:24 +0300
commit980fe00a74a9ad013b945755415ace2e5429c3c2 (patch)
treea1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/tools/web_console
parent374a039b97a11ee7306539d16aaab27fed66b398 (diff)
downloadtranslated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2
translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/tools/web_console')
-rw-r--r--files/ru/tools/web_console/index.html42
1 files changed, 21 insertions, 21 deletions
diff --git a/files/ru/tools/web_console/index.html b/files/ru/tools/web_console/index.html
index a40b8982ae..f0d7363d14 100644
--- a/files/ru/tools/web_console/index.html
+++ b/files/ru/tools/web_console/index.html
@@ -196,7 +196,7 @@ translation_of: Tools/Web_Console
<p><span id="result_box" lang="ru"><span>Тем не менее</span><span>,</span> <span>если</span> <span>какой-то</span> <span>JavaScript-код</span> <span>читает что</span> <span>стиль</span><span> был изменён</span><span>,</span> <span>то</span> <span>браузер должен</span> <span>выполнить</span> <span>синхронное</span> <span>переформатирование</span></span><span lang="ru"><span> в порядке вычисленным расчётом стиля</span><span> чтобы вернуться</span><span>.</span> <span>Например</span><span>, код</span><span> как</span> <span>этот хочет  вызвать</span> <span>немедленное</span><span>,</span> <span>синхронное</span><span>,</span> </span><span id="result_box" lang="ru"><span>переформатирование</span></span><span lang="ru"><span>,</span> <span>когда вызовет</span></span> <code>window.getComputedStyle(thing).height</code>:</p>
-<pre class="brush: js notranslate">var thing = document.getElementById("the-thing");
+<pre class="brush: js">var thing = document.getElementById("the-thing");
thing.style.display = "inline-block";
var thingHeight = window.getComputedStyle(thing).height;</pre>
@@ -301,12 +301,12 @@ var thingHeight = window.getComputedStyle(thing).height;</pre>
<td>
<p>The argument to <code>error()</code>.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.error("an error");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7143/api-error.png" style="display: block; margin-left: auto; margin-right: auto;">
<p>The console will display a full stack trace for errors:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
function error() {
console.error("an error");
}
@@ -329,12 +329,12 @@ call_error();</pre>
<td>
<p>If the assertion succeeds, nothing. If the assertion fails, the argument:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.assert(false, "My assertion always fails");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7139/api-assert.png" style="display: block; margin-left: auto; margin-right: auto;">
<p>The console will display a full stack trace for assertions:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
function assertion() {
console.assert(false, "assertion failed");
}
@@ -366,7 +366,7 @@ call_assertion();</pre>
<td>
<p>The argument to <code>warn()</code>.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.warn("a warning");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7155/api-warn.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
</tr>
@@ -388,7 +388,7 @@ console.warn("a warning");</pre>
<td>
<p>The argument to <code>info()</code>.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.info("some info");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7145/api-info.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
</tr>
@@ -410,7 +410,7 @@ console.info("some info");</pre>
<td>
<p>The label supplied, if any, and the number of times this occurrence of <code>count()</code> has been called with the given label:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.count(user.value);</pre>
<p><img alt="" src="https://mdn.mozillademos.org/files/7359/api-count.png" style="display: block; margin-left: auto; margin-right: auto;"></p>
@@ -421,7 +421,7 @@ console.count(user.value);</pre>
<td>
<p>Listing of the object's properties:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
var user = document.getElementById('user');
console.dir(user);</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7157/api-dir.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
@@ -435,7 +435,7 @@ console.dir(user);</pre>
<td>
<p>The argument to <code>log()</code>.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.log("logged");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7147/api-log.png" style="display: block; margin-left: auto; margin-right: auto;">
@@ -456,7 +456,7 @@ console.log("logged");</pre>
<td>
<p>Notification that the specified timer started.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.time("t");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7149/api-time.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
</tr>
@@ -465,7 +465,7 @@ console.time("t");</pre>
<td>
<p>Duration for the specified timer.</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.timeEnd("t");</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7151/api-timeEnd.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
</tr>
@@ -474,7 +474,7 @@ console.timeEnd("t");</pre>
<td>
<p>Stack trace:</p>
- <pre class="brush: js notranslate">
+ <pre class="brush: js">
console.trace();</pre>
<img alt="" src="https://mdn.mozillademos.org/files/7159/api-trace.png" style="display: block; margin-left: auto; margin-right: auto;"></td>
</tr>
@@ -489,7 +489,7 @@ console.trace();</pre>
<p>Начиная с Firefox 31, вы можете использовать спецификатор формата <code>"%c"</code> для стилизации консольных сообщений:</p>
-<pre class="brush: js notranslate">console.log("%cMy stylish message", "color: red; font-style: italic");</pre>
+<pre class="brush: js">console.log("%cMy stylish message", "color: red; font-style: italic");</pre>
<div><img alt="" src="https://mdn.mozillademos.org/files/7739/console-style.png" style="display: block; height: 52px; margin-left: auto; margin-right: auto; width: 293px;"></div>
@@ -572,26 +572,26 @@ console.trace();</pre>
<p>Вы можете передать DOM-элемент для определённого iframe :</p>
-<pre class="brush: js notranslate">var frame = document.getElementById("frame1");
+<pre class="brush: js">var frame = document.getElementById("frame1");
cd(frame);</pre>
<p>Вы можете передать CSS селектор для определённого iframe:</p>
-<pre class="brush: js notranslate">cd("#frame1");</pre>
+<pre class="brush: js">cd("#frame1");</pre>
<p>Вы можете передать глобальный объект <a href="https://developer.mozilla.org/ru/docs/Web/API/Window">Window</a> для определённого iframe:</p>
-<pre class="brush: js notranslate">var frame = document.getElementById("frame1");
+<pre class="brush: js">var frame = document.getElementById("frame1");
cd(frame.contentWindow);
</pre>
<p>Для переключения контекста видимости обратно к окну верхнего уровня, введите <code>cd()</code> без аргументов:</p>
-<pre class="brush: js notranslate">cd();</pre>
+<pre class="brush: js">cd();</pre>
<p>Предположим у нас есть документ, который содержит iframe:</p>
-<pre class="brush: html notranslate">&lt;!DOCTYPE html&gt;
+<pre class="brush: html">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta charset="UTF-8"&gt;
@@ -603,7 +603,7 @@ cd(frame.contentWindow);
<p>В этом iframe определена новая функция:</p>
-<pre class="brush: html notranslate">&lt;!DOCTYPE html&gt;
+<pre class="brush: html">&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta charset="UTF-8"&gt;
@@ -619,7 +619,7 @@ cd(frame.contentWindow);
<p>Вы можете переключиться на контекст iframe например так:</p>
-<pre class="brush: js notranslate">cd("#frame1");</pre>
+<pre class="brush: js">cd("#frame1");</pre>
<p>Сейчас вы сможете видеть, что глобальный объект <a href="https://developer.mozilla.org/ru/docs/Web/API/Window">Window</a> это теперь наш iframe:</p>