diff options
Diffstat (limited to 'files/pt-br/web/api/console/timeend/index.html')
-rw-r--r-- | files/pt-br/web/api/console/timeend/index.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/files/pt-br/web/api/console/timeend/index.html b/files/pt-br/web/api/console/timeend/index.html new file mode 100644 index 0000000000..7ef63ea5bc --- /dev/null +++ b/files/pt-br/web/api/console/timeend/index.html @@ -0,0 +1,90 @@ +--- +title: Console.timeEnd() +slug: Web/API/Console/timeEnd +tags: + - Desenvolvimento Web + - metodo +translation_of: Web/API/Console/timeEnd +--- +<div> +<div>{{APIRef("Console API")}}{{Non-standard_header}}</div> +</div> + +<h2 id="Summary" name="Summary">Resumo</h2> + +<p>Interrompe um temporizador que foi anteriormente iniciado por uma chamada a {{domxref("console.time()")}}.</p> + +<p>Veja <a href="/en-US/docs/DOM/console#Timers" title="DOM/console#Timers">Timers</a> na documentação de {{domxref("console")}} para detalhes e exemplos.</p> + +<h2 id="Syntax" name="Syntax">Sintaxe</h2> + +<pre class="syntaxbox">console.timeEnd(<var>timerName</var>); +</pre> + +<h3 id="Parametros">Parametros</h3> + +<dl> + <dt><code>timerName</code></dt> + <dd>O nome do temporizador a ser interrompido. Uma vez interrompido, o tempo decorrido é automaticamente apresentado no <a href="/en-US/docs/Tools/Web_Console" title="Web Console">Web Console</a>.</dd> +</dl> + +<h2 id="Specification" name="Specification">Especificação</h2> + +<p>Não é parte de qualquer especificação.</p> + +<h2 id="Compatibilidade_com_navegadores">Compatibilidade com navegadores</h2> + +<div>{{CompatibilityTable}}</div> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Chrome</th> + <th>Firefox (Gecko)</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>2</td> + <td>{{CompatGeckoDesktop("10.0")}}</td> + <td>11</td> + <td>{{CompatVersionUnknown}}</td> + <td>4.0</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Android</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>{{CompatGeckoMobile("10.0")}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + <td>{{CompatUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{domxref("Console.time")}}</li> + <li><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></li> +</ul> |