aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/svgrect
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:24 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commit1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch)
tree30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/svgrect
parentc05efa8d7ae464235cf83d7c0956e42dc6974103 (diff)
downloadtranslated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2
translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip
convert content to md
Diffstat (limited to 'files/fr/web/api/svgrect')
-rw-r--r--files/fr/web/api/svgrect/index.md138
1 files changed, 50 insertions, 88 deletions
diff --git a/files/fr/web/api/svgrect/index.md b/files/fr/web/api/svgrect/index.md
index 96251b83cf..39d3c7663d 100644
--- a/files/fr/web/api/svgrect/index.md
+++ b/files/fr/web/api/svgrect/index.md
@@ -5,106 +5,68 @@ tags:
- Rectangle
translation_of: Web/API/SVGRect
---
-<h2 id="Interface_SVG_rect">Interface SVG rect</h2>
+## Interface SVG rect
-<p><code>SVGRect</code> représente la géométrie rectangulaire. Les rectangles consistent en une paire de coordonnées (x,y) correspondant à une valeur X minimale, une valeur Y minimale, et une largeur et hauteur, lesquelles sont habituellement positives.</p>
+`SVGRect` représente la géométrie rectangulaire. Les rectangles consistent en une paire de coordonnées (x,y) correspondant à une valeur X minimale, une valeur Y minimale, et une largeur et hauteur, lesquelles sont habituellement positives.
-<p>Un objet <code>SVGRect </code>peut être marqué en lecture-seule, ce qui signifie que les tentatives de modification sur cet objet entraîneront un lancement d'exception.</p>
+Un objet `SVGRect `peut être marqué en lecture-seule, ce qui signifie que les tentatives de modification sur cet objet entraîneront un lancement d'exception.
-<h3 id="Vue_d'ensemble_de_l'interface">Vue d'ensemble de l'interface</h3>
+### Vue d'ensemble de l'interface
<table class="standard-table">
- <tbody>
- <tr>
- <th scope="row">Implémente aussi</th>
- <td><em>Aucune</em></td>
- </tr>
- <tr>
- <th scope="row">Méthodes</th>
- <td><em>Aucune</em></td>
- </tr>
- <tr>
- <th scope="row">Propriétés</th>
- <td>
- <ul>
- <li>float <code>x</code></li>
- <li>float <code>y</code></li>
- <li>float <code>width</code></li>
- <li>float <code>height</code></li>
- </ul>
- </td>
- </tr>
- <tr>
- <th scope="row">Document normatif</th>
- <td><a href="http://www.w3.org/TR/SVG11/types.html#InterfaceSVGRect">SVG 1.1 (2nd Edition)</a></td>
- </tr>
- </tbody>
+ <tbody>
+ <tr>
+ <th scope="row">Implémente aussi</th>
+ <td><em>Aucune</em></td>
+ </tr>
+ <tr>
+ <th scope="row">Méthodes</th>
+ <td><em>Aucune</em></td>
+ </tr>
+ <tr>
+ <th scope="row">Propriétés</th>
+ <td>
+ <ul>
+ <li>float <code>x</code></li>
+ <li>float <code>y</code></li>
+ <li>float <code>width</code></li>
+ <li>float <code>height</code></li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <th scope="row">Document normatif</th>
+ <td>
+ <a href="http://www.w3.org/TR/SVG11/types.html#InterfaceSVGRect"
+ >SVG 1.1 (2nd Edition)</a
+ >
+ </td>
+ </tr>
+ </tbody>
</table>
-<h2 id="Propriétés">Propriétés</h2>
+## Propriétés
-<table class="standard-table">
- <thead>
- <tr>
- <th>Nom</th>
- <th>Type</th>
- <th>Description</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td><code>x</code></td>
- <td>float</td>
- <td>La coordonnée <em>x</em> du rectangle, en unité utilisateur.</td>
- </tr>
- <tr>
- <td><code>y</code></td>
- <td>float</td>
- <td>La coordonnée <em>y</em> du rectangle, en unité utilisateur.</td>
- </tr>
- <tr>
- <td><code>width</code></td>
- <td>float</td>
- <td>La largeur <em>width</em> du rectangle, en unité utilisateur.</td>
- </tr>
- <tr>
- <td><code>height</code></td>
- <td>float</td>
- <td>La hauteur <em>height</em> du rectangle, en unité utilisateur.</td>
- </tr>
- </tbody>
-</table>
+| Nom | Type | Description |
+| -------- | ----- | ------------------------------------------------------- |
+| `x` | float | La coordonnée _x_ du rectangle, en unité utilisateur. |
+| `y` | float | La coordonnée _y_ du rectangle, en unité utilisateur. |
+| `width` | float | La largeur _width_ du rectangle, en unité utilisateur. |
+| `height` | float | La hauteur _height_ du rectangle, en unité utilisateur. |
-<p><strong>Exceptions à l'affectation :</strong> une <code><a href="DOMException" rel="custom">DOMException</a></code> avec le code <code>NO_MODIFICATION_ALLOWED_ERR</code> est levée lors d'une tentative de modification d'un attribut en lecture-seule.</p>
+**Exceptions à l'affectation :** une [`DOMException`](DOMException) avec le code `NO_MODIFICATION_ALLOWED_ERR` est levée lors d'une tentative de modification d'un attribut en lecture-seule.
-<h2 id="Méthodes">Méthodes</h2>
+## Méthodes
-<p>L'interface <code>SVGRect</code> ne fournit pas de méthode spécifique.</p>
+L'interface `SVGRect` ne fournit pas de méthode spécifique.
-<h2 id="Specifications">Spécifications</h2>
+## Spécifications
-<table class="standard-table">
- <thead>
- <tr>
- <th scope="col">Spécification</th>
- <th scope="col">Statut</th>
- <th scope="col">Commentaire</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>{{SpecName("Geometry Interfaces", "#DOMRect", "DOMRect")}}</td>
- <td>{{Spec2("Geometry Interfaces")}}</td>
- <td>Changement de SVGRect en tant qu'ancien alias de DOMRect.</td>
- </tr>
- <tr>
- <td>{{SpecName("SVG1.1", "types.html#InterfaceSVGRect", "SVGRect")}}</td>
- <td>{{Spec2("SVG1.1")}}</td>
- <td>Définition initiale</td>
- </tr>
- </tbody>
-</table>
+| Spécification | Statut | Commentaire |
+| ------------------------------------------------------------------------------------ | -------------------------------------------- | --------------------------------------------------------- |
+| {{SpecName("Geometry Interfaces", "#DOMRect", "DOMRect")}} | {{Spec2("Geometry Interfaces")}} | Changement de SVGRect en tant qu'ancien alias de DOMRect. |
+| {{SpecName("SVG1.1", "types.html#InterfaceSVGRect", "SVGRect")}} | {{Spec2("SVG1.1")}} | Définition initiale |
-<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
+## Compatibilité des navigateurs
-<p>{{Compat("api.SVGRect")}}</p>
+{{Compat("api.SVGRect")}}