aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/html/element/output/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/html/element/output/index.html')
-rw-r--r--files/ru/web/html/element/output/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/html/element/output/index.html b/files/ru/web/html/element/output/index.html
index 1e2ef166cd..f184b9be4d 100644
--- a/files/ru/web/html/element/output/index.html
+++ b/files/ru/web/html/element/output/index.html
@@ -57,7 +57,7 @@ translation_of: Web/HTML/Element/output
<p>Эта форма содержит слайдер, значение которого находится в пределах от 0 до 100, и элемент {{HTMLElement("input")}}, в который можно ввести второе значение. Два числа складываются и результат отображается в элементе <code>&lt;output&gt;</code> каждый раз, когда значение любого управляющего элемента меняется.</p>
-<pre class="brush: html notranslate">&lt;form oninput="result.value=parseInt(a.value)+parseInt(b.value)"&gt;
+<pre class="brush: html">&lt;form oninput="result.value=parseInt(a.value)+parseInt(b.value)"&gt;
&lt;input type="range" name="b" value="50" /&gt; +
&lt;input type="number" name="a" value="10" /&gt; =
&lt;output name="result"&gt;60&lt;/output&gt;