aboutsummaryrefslogtreecommitdiff
path: root/files/pt-br/web/events/abort/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-br/web/events/abort/index.html')
-rw-r--r--files/pt-br/web/events/abort/index.html69
1 files changed, 69 insertions, 0 deletions
diff --git a/files/pt-br/web/events/abort/index.html b/files/pt-br/web/events/abort/index.html
new file mode 100644
index 0000000000..aa681269ab
--- /dev/null
+++ b/files/pt-br/web/events/abort/index.html
@@ -0,0 +1,69 @@
+---
+title: abort
+slug: Web/Events/abort
+translation_of: Web/API/HTMLMediaElement/abort_event
+---
+<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>