aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/event
diff options
context:
space:
mode:
authorFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
committerFlorian Merz <me@fiji-flo.de>2021-02-11 12:36:08 +0100
commit39f2114f9797eb51994966c6bb8ff1814c9a4da8 (patch)
tree66dbd9c921f56e440f8816ed29ac23682a1ac4ef /files/fr/web/api/event
parent8260a606c143e6b55a467edf017a56bdcd6cba7e (diff)
downloadtranslated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.gz
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.tar.bz2
translated-content-39f2114f9797eb51994966c6bb8ff1814c9a4da8.zip
unslug fr: move
Diffstat (limited to 'files/fr/web/api/event')
-rw-r--r--files/fr/web/api/event/comparison_of_event_targets/index.html (renamed from files/fr/web/api/event/comparaison_des_cibles_d_évènements/index.html)0
-rw-r--r--files/fr/web/api/event/createevent/index.html41
2 files changed, 0 insertions, 41 deletions
diff --git a/files/fr/web/api/event/comparaison_des_cibles_d_évènements/index.html b/files/fr/web/api/event/comparison_of_event_targets/index.html
index f938d0cff5..f938d0cff5 100644
--- a/files/fr/web/api/event/comparaison_des_cibles_d_évènements/index.html
+++ b/files/fr/web/api/event/comparison_of_event_targets/index.html
diff --git a/files/fr/web/api/event/createevent/index.html b/files/fr/web/api/event/createevent/index.html
deleted file mode 100644
index 5cfbb7f05f..0000000000
--- a/files/fr/web/api/event/createevent/index.html
+++ /dev/null
@@ -1,41 +0,0 @@
----
-title: Event.createEvent()
-slug: Web/API/Event/createEvent
-tags:
- - API
- - DOM
- - Evènement
- - Méthodes
-translation_of: Web/API/Document/createEvent
-translation_of_original: Web/API/Event/createEvent
----
-<p>{{APIRef("DOM")}}</p>
-
-<p>Crée un nouvel évènement, qui doit alors être initialisé en appelant sa méthode <code>initEvent()</code> .</p>
-
-<h2 id="Syntaxe">Syntaxe</h2>
-
-<pre><code>document.createEvent(type) </code></pre>
-
-<dl>
- <dt><code>type</code></dt>
- <dd>Une chaîne de caractère indiquant le type de l'évènement à créer.</dd>
-</dl>
-
-<p>Cette méthode renvoie un nouvel objet DOM {{ domxref("Event") }} du type spécifié, qui doit être initialisé avant utilisation.</p>
-
-<h2 id="Exemple">Exemple</h2>
-
-<pre>var newEvent = document.createEvent("UIEvents");</pre>
-
-<h2 id="Spécification">Spécification</h2>
-
-<ul>
- <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document" title="http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-document">DOM Level 2 Events</a></li>
-</ul>
-
-<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
-
-
-
-<p>{{Compat("api.Event.createEvent")}}</p>