blob: 6a3975d40be492bbf6fa9b123a19c070248b7186 (
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
72
73
74
75
76
77
78
79
80
81
82
|
---
title: MozMmsEvent
slug: Web/API/MozMmsEvent
tags:
- Firefox OS
- Mobile
- Non-standard
- Obsolete
- Reference
- WebSMS
translation_of: Archive/B2G_OS/API/MozMmsEvent
---
<p>{{ Apiref() }}</p>
<div class="warning">
<p style="text-align: center;">This API is available on <a href="/en-US/docs/Mozilla/Firefox_OS">Firefox OS</a> for <a href="/en-US/docs/Mozilla/Firefox_OS/Security/Application_security#App_Types">internal applications</a> only.</p>
</div>
<h2 id="요약">요약</h2>
<p>DOM <code>MozMmsEvent</code> 는 WebSMS MMS 메시지와 관련된 이벤트 객체이다.</p>
<h2 id="속성">속성</h2>
<dl>
<dt>{{domxref("MozMmsEvent.message")}} {{readonlyinline}}</dt>
<dd>해당 이벤트에 의해 발생된 {{ domxref("MozMmsMessage") }} 이다.</dd>
</dl>
<p><code>MozM</code><code>msEvent</code> 는 또한 {{domxref("Event")}} 의 속성을 상속받는다.</p>
<p>{{page("/en-US/docs/Web/API/Event","Properties")}}</p>
<h2 id="메소드">메소드</h2>
<p><code>MozMmsEvent</code> 는 {{domxref("Event")}} 의 메소드를 상속받는다.</p>
<p>{{page("/en-US/docs/Web/API/Event","Methods")}}</p>
<h2 id="이벤트">이벤트</h2>
<p><code>MozMmsEvent</code> 는 다음과 같은 이벤트들에 사용된다:</p>
<dl>
<dt>{{event("deliverysuccess")}}</dt>
<dd>MMS가 수신자에게 전달되었을 때 발생한다.</dd>
<dt>{{event("received")}}</dt>
<dd>MMS를 받았을 때 발생한다.</dd>
<dt>{{event("sent")}}</dt>
<dd>MMS를 보냈을 때 발생한다.</dd>
</dl>
<h2 id="명세">명세</h2>
<p>이 API는 비 표준 스펙의 구현체이다. 그러나 W3C의 <a href="http://www.w3.org/2012/sysapps/" title="http://www.w3.org/2012/sysapps/">System Application Working Group</a>에서 논의되고 있다.</p>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('Messaging')}}</td>
<td>{{Spec2('Messaging')}}</td>
<td>Editor Draft (WIP).</td>
</tr>
</tbody>
</table>
<h2 id="같이_보기">같이 보기</h2>
<div id="compat-mobile"> </div>
<ul>
<li>{{ domxref("window.navigator.mozSms") }}</li>
<li>{{ domxref("MozMobileMessageManager") }}</li>
<li>{{ domxref("MozMmsMessage") }}</li>
</ul>
|