diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 21:46:22 -0500 |
commit | a065e04d529da1d847b5062a12c46d916408bf32 (patch) | |
tree | fe0f8bcec1ff39a3c499a2708222dcf15224ff70 /files/it/web/api/htmliframeelement | |
parent | 218934fa2ed1c702a6d3923d2aa2cc6b43c48684 (diff) | |
download | translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.gz translated-content-a065e04d529da1d847b5062a12c46d916408bf32.tar.bz2 translated-content-a065e04d529da1d847b5062a12c46d916408bf32.zip |
update based on https://github.com/mdn/yari/issues/2028
Diffstat (limited to 'files/it/web/api/htmliframeelement')
-rw-r--r-- | files/it/web/api/htmliframeelement/mute/index.html | 93 |
1 files changed, 0 insertions, 93 deletions
diff --git a/files/it/web/api/htmliframeelement/mute/index.html b/files/it/web/api/htmliframeelement/mute/index.html deleted file mode 100644 index ca7e44107e..0000000000 --- a/files/it/web/api/htmliframeelement/mute/index.html +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: HTMLIFrameElement.mute() -slug: Web/API/HTMLIFrameElement/mute -translation_of: Mozilla/Gecko/Chrome/API/Browser_API/mute ---- -<p>{{APIRef("HTML DOM")}}{{non-standard_header}}</p> - -<p>Il metodo <code>mute()</code> del {{domxref("HTMLIFrameElement")}} muta qualsiasi audio in riproduzione nel browser {{HTMLElement("iframe")}}.</p> - -<h2 id="Sintassi">Sintassi</h2> - -<pre class="syntaxbox"><em>instanceOfHTMLIframeElement</em>.mute();</pre> - -<h3 id="Ritorna">Ritorna</h3> - -<p>Nulla.</p> - -<h3 id="Parametri">Parametri</h3> - -<p>Nessuno.</p> - -<h2 id="Example" name="Example">Esempio</h2> - -<pre class="brush:js">var browser = document.querySelector('iframe'); - -browser.mute(); -</pre> - -<h2 id="Specification" name="Specification">Specifica</h2> - -<p>Non è parte di nessuna specifica.</p> - -<h2 id="Compatibilità_browser">Compatibilità browser</h2> - -<div>{{CompatibilityTable}}</div> - -<div id="compat-desktop"> -<table class="compat-table"> - <tbody> - <tr> - <th>Caratteristica</th> - <th>Chrome</th> - <th>Firefox (Gecko)</th> - <th>Internet Explorer</th> - <th>Opera</th> - <th>Safari (WebKit)</th> - </tr> - <tr> - <td>Supporto base</td> - <td>{{CompatNo}}</td> - <td>{{CompatGeckoDesktop(47)}}<sup>[1]</sup></td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - </tr> - </tbody> -</table> -</div> - -<div id="compat-mobile"> -<table class="compat-table"> - <tbody> - <tr> - <th>Caratteristica</th> - <th>Android</th> - <th>Android Webview</th> - <th>Firefox Mobile (Gecko)</th> - <th>IE Mobile</th> - <th>Opera Mobile</th> - <th>Safari Mobile</th> - <th>Chrome for Android</th> - </tr> - <tr> - <td>Supporto base</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - <td>{{CompatNo}}</td> - </tr> - </tbody> -</table> -</div> - -<p>[1] Supportato solo in codice chrome.</p> - -<h2 id="Vedi_anche">Vedi anche</h2> - -<ul> - <li><a href="/en-US/docs/WebAPI/Browser">Usando le Browser API</a></li> -</ul> |