diff options
Diffstat (limited to 'files/ru/web/api/domimplementation/createhtmldocument/index.html')
-rw-r--r-- | files/ru/web/api/domimplementation/createhtmldocument/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/domimplementation/createhtmldocument/index.html b/files/ru/web/api/domimplementation/createhtmldocument/index.html index 6a93e3afb9..a0157be6d6 100644 --- a/files/ru/web/api/domimplementation/createhtmldocument/index.html +++ b/files/ru/web/api/domimplementation/createhtmldocument/index.html @@ -15,7 +15,7 @@ translation_of: Web/API/DOMImplementation/createHTMLDocument <h2 id="Синтаксис">Синтаксис</h2> -<pre class="syntaxbox notranslate">const <var>newDoc</var> = document.implementation.createHTMLDocument(<var>title</var>)</pre> +<pre class="syntaxbox">const <var>newDoc</var> = document.implementation.createHTMLDocument(<var>title</var>)</pre> <h3 id="Параметры">Параметры</h3> @@ -30,7 +30,7 @@ translation_of: Web/API/DOMImplementation/createHTMLDocument <p>Вот HTML для этого примера:</p> -<pre class="brush: html notranslate"><body> +<pre class="brush: html"><body> <p>Click <a href="javascript:makeDocument()">here</a> to create a new document and insert it below.</p> <iframe id="theFrame" src="about:blank" /> </body> @@ -38,7 +38,7 @@ translation_of: Web/API/DOMImplementation/createHTMLDocument <p>Реализация JavaScript <code>makeDocument()</code> выглядит следующим образом:</p> -<pre class="brush: js notranslate">function makeDocument() { +<pre class="brush: js">function makeDocument() { let frame = document.getElementById("theFrame"); let doc = document.implementation.createHTMLDocument("New Document"); @@ -69,7 +69,7 @@ translation_of: Web/API/DOMImplementation/createHTMLDocument <p>Возвращаемый документ предварительно сконструирован со следующим HTML-кодом:</p> -<pre class="brush: html notranslate"><!doctype html> +<pre class="brush: html"><!doctype html> <html> <head> <title><var>title</var></title> |