aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/api/htmlmediaelement/abort_event/index.html
blob: 721cc43353df8b73ded327bec0793e2ee37ec926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
title: abort
slug: Web/API/HTMLMediaElement/abort_event
translation_of: Web/API/HTMLMediaElement/abort_event
translation_of_original: Web/Events/abort
original_slug: Web/Events/abort
---
<p>O evento <strong><code>abort</code></strong> é disparado quando o carregamento de um recurso foi interrompido.</p>

<h2 id="Informações_Gerais">Informações Gerais</h2>

<dl>
 <dt style="float: left; text-align: right; width: 120px;">Especificação</dt>
 <dd style="margin: 0 0 0 120px;"><a class="external" href="http://www.w3.org/TR/DOM-Level-3-Events/#event-type-abort">DOM L3</a></dd>
 <dt style="float: left; text-align: right; width: 120px;">Interface</dt>
 <dd style="margin: 0 0 0 120px;">{{domxref("UIEvent")}} se gerado a partir da interface do usuário, caso contrário será {{domxref("Event")}}.</dd>
 <dt style="float: left; text-align: right; width: 120px;">Bubbles</dt>
 <dd style="margin: 0 0 0 120px;">Não</dd>
 <dt style="float: left; text-align: right; width: 120px;">Cancelável</dt>
 <dd style="margin: 0 0 0 120px;">Não</dd>
 <dt style="float: left; text-align: right; width: 120px;">Alvo</dt>
 <dd style="margin: 0 0 0 120px;">{{domxref("Element")}}</dd>
 <dt style="float: left; text-align: right; width: 120px;">Ação Padrão</dt>
 <dd style="margin: 0 0 0 120px;">Nenhuma</dd>
</dl>

<h2 id="Propriedades">Propriedades</h2>

<div>
<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Propriedade</th>
   <th scope="col">Tipo</th>
   <th scope="col">Descrição</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td><code>target</code> {{readOnlyInline}}</td>
   <td><code>{{domxref("EventTarget")}}</code></td>
   <td>O evento alvo (O mais elevado da árvore DOM).</td>
  </tr>
  <tr>
   <td><code>type</code> {{readOnlyInline}}</td>
   <td><code>{{domxref("DOMString")}}</code></td>
   <td>O tipo de evento.</td>
  </tr>
  <tr>
   <td><code>bubbles</code> {{readOnlyInline}}</td>
   <td><code>{{domxref("Boolean")}}</code></td>
   <td>O evento é normalmente <em>bubble</em>?</td>
  </tr>
  <tr>
   <td><code>cancelable</code> {{readOnlyInline}}</td>
   <td><code>{{domxref("Boolean")}}</code></td>
   <td>É possível cancelar o evento?</td>
  </tr>
  <tr>
   <td><code>view</code> {{readOnlyInline}}</td>
   <td><code>{{domxref("WindowProxy")}}</code></td>
   <td><code>{{domxref("document.defaultView")}} </code>(<code>window</code> do documento)</td>
  </tr>
  <tr>
   <td><code>detail</code> {{readOnlyInline}}</td>
   <td><code>long</code> (<code>float</code>)</td>
   <td>0.</td>
  </tr>
 </tbody>
</table>
</div>