aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/document/compatmode/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/document/compatmode/index.html')
-rw-r--r--files/ru/web/api/document/compatmode/index.html50
1 files changed, 50 insertions, 0 deletions
diff --git a/files/ru/web/api/document/compatmode/index.html b/files/ru/web/api/document/compatmode/index.html
new file mode 100644
index 0000000000..f8a48a4ca2
--- /dev/null
+++ b/files/ru/web/api/document/compatmode/index.html
@@ -0,0 +1,50 @@
+---
+title: Document.compatMode
+slug: Web/API/Document/compatMode
+tags:
+ - API
+ - DOM
+ - almost standards
+ - quirk
+ - standards
+ - Свойство
+ - режимы
+translation_of: Web/API/Document/compatMode
+---
+<p>{{ ApiRef("DOM") }}</p>
+
+<p>Определяет когда документ отображается в <a href="/en/Quirks_Mode_and_Standards_Mode" title="en/Mozilla's Quirks Mode">Quirks mode</a> или Стандартном режиме.</p>
+
+<h2 id="Syntax" name="Syntax">Синтаксис</h2>
+
+<pre class="eval"><em>mode</em> = document.compatMode
+</pre>
+
+<h2 id="Значения">Значения</h2>
+
+<ul>
+ <li><code>"BackCompat"</code> если документ в quirks mode;</li>
+ <li><code>"CSS1Compat"</code> если документ в не-quirks (также известном как "standards") mode или лимитированный-quirks (известный как "almost standards") mode.</li>
+</ul>
+
+<dl>
+ <dt><code>mode</code></dt>
+ <dd>Исчислимая величина, которая может быть:</dd>
+</dl>
+
+<div class="note">
+<p><strong>Примечание</strong>: все эти режимы внесены в стандарт, поэтому старые названия "standards" и "almost standards" теперь бессмысленны и не используются.</p>
+</div>
+
+<h2 id="Example" name="Example">Пример</h2>
+
+<pre class="eval">if (document.compatMode == "BackCompat") {
+ // в Quirks режиме
+}
+</pre>
+
+<h2 id="Specification" name="Specification">Спецификации</h2>
+
+<ul>
+ <li><a class="external" href="http://dom.spec.whatwg.org/#dom-document-compatmode" title="http://dom.spec.whatwg.org/#dom-document-compatmode">DOM: Document.compatMode</a></li>
+</ul>