diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/notation | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/fr/web/api/notation')
-rw-r--r-- | files/fr/web/api/notation/index.html | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/files/fr/web/api/notation/index.html b/files/fr/web/api/notation/index.html new file mode 100644 index 0000000000..450e57746c --- /dev/null +++ b/files/fr/web/api/notation/index.html @@ -0,0 +1,107 @@ +--- +title: Notation +slug: Web/API/Notation +tags: + - API + - Arborescence + - DOM + - Noeuds + - Notation + - Reference +translation_of: Web/API/Notation +--- +<div>{{APIRef("DOM")}}{{obsolete_header}}</div> + +<p>Représente une notation DTD (définition de type de document) en lecture seule. Peut déclarer le format d'une entité non analysée ou déclarer formellement les cibles d'instruction de traitement du document. Hérite des méthodes et des propriétés de <a class="internal" href="/En/DOM/Node" title="En/DOM/Node"><code>Node</code></a>. Son <code><a class="internal" href="/En/DOM/Node/NodeName" title="En/DOM/Node/NodeName">nodeName</a></code> est le nom de la notation. N'a pas de parent.</p> + +<h2 id="Propriétés">Propriétés</h2> + +<dl> + <dt>{{domxref("Notation.publicId")}} {{ReadOnlyInline}}</dt> + <dd>est une {{domxref("DOMString")}} (<em>chaîne de caractères</em>).</dd> + <dt>{{domxref("Notation.systemId")}} {{ReadOnlyInline}}</dt> + <dd>est une {{domxref("DOMString")}} (<em>chaîne de caractères</em>).</dd> +</dl> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th>Spécification</th> + <th>Statut</th> + <th>Commentaire</th> + </tr> + <tr> + <td>{{SpecName("DOM3 Core", "core.html#ID-5431D1B9", "Notation")}}</td> + <td>{{Spec2("DOM3 Core")}}</td> + <td>Pas de changement.</td> + </tr> + <tr> + <td>{{SpecName("DOM2 Core", "core.html#ID-5431D1B9", "Notation")}}</td> + <td>{{Spec2("DOM2 Core")}}</td> + <td>Pas de changement.</td> + </tr> + <tr> + <td>{{SpecName('DOM1', 'level-one-core.html#ID-5431D1B9', 'Notation')}}</td> + <td>{{Spec2('DOM1')}}</td> + <td>Définition initiale.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Chrome</th> + <th>Edge</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatNo}}</td> + <td>{{CompatNo}}</td> + <td>{{CompatNo}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Fonctionnalité</th> + <th>Android</th> + <th>Chrome for Android</th> + <th>Edge</th> + <th>Firefox Mobile (Gecko)</th> + <th>IE Mobile</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Basic support</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> |