aboutsummaryrefslogtreecommitdiff
path: root/files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html')
-rw-r--r--files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html41
1 files changed, 41 insertions, 0 deletions
diff --git a/files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html b/files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html
new file mode 100644
index 0000000000..5e51362135
--- /dev/null
+++ b/files/fr/mozilla/add-ons/webextensions/api/find/removehighlighting/index.html
@@ -0,0 +1,41 @@
+---
+title: find.removeHighlighting()
+slug: Mozilla/Add-ons/WebExtensions/API/find/removeHighlighting
+tags:
+ - API
+ - Add-ons
+ - Extensions
+ - Method
+ - Reference
+ - WebExtensions
+ - find
+ - removeHighlighting
+translation_of: Mozilla/Add-ons/WebExtensions/API/find/removeHighlighting
+---
+<div>{{AddonSidebar()}}</div>
+
+<p>Supprimer toute mise en évidence d'une recherche précédente qui a été appliquée par un appel précédent à {{WebExtAPIRef("highlightResults()")}}, ou par l'interface utilisateur native du navigateur.</p>
+
+<h2 id="Syntaxe">Syntaxe</h2>
+
+<pre class="syntaxbox brush:js">browser.find.removeHighlighting()
+</pre>
+
+<h3 id="Paramètres">Paramètres</h3>
+
+<p>Aucun</p>
+
+<h3 id="Valeur_retournée">Valeur retournée</h3>
+
+<p>Aucune.</p>
+
+<h2 id="Compatibilité_du_navigateur">Compatibilité du navigateur</h2>
+
+<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
+
+<p>{{Compat("webextensions.api.find.removeHighlighting", 10)}}</p>
+
+<h2 id="Exemples">Exemples</h2>
+
+<pre class="brush: js">browser.find.removeHighlighting();
+</pre>