OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 16 matching lines...) Expand all Loading... |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 [ | 32 [ |
33 GarbageCollected, | 33 GarbageCollected, |
34 ActiveDOMObject, | 34 ActiveDOMObject, |
35 Constructor(DOMString title, optional NotificationOptions options), | 35 Constructor(DOMString title, optional NotificationOptions options), |
36 ConstructorCallWith=ExecutionContext, | 36 ConstructorCallWith=ExecutionContext, |
| 37 Exposed=(Window,Worker), |
37 MeasureAs=NotificationCreated, | 38 MeasureAs=NotificationCreated, |
38 RuntimeEnabled=Notifications, | 39 RuntimeEnabled=Notifications, |
39 ] interface Notification : EventTarget { | 40 ] interface Notification : EventTarget { |
40 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl
y attribute DOMString permission; | 41 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl
y attribute DOMString permission; |
41 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati
c void requestPermission(optional NotificationPermissionCallback callback); | 42 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati
c void requestPermission(optional NotificationPermissionCallback callback); |
42 | 43 |
43 // FIXME: Implement the Notification.get() method. | 44 // FIXME: Implement the Notification.get() method. |
44 | 45 |
45 attribute EventHandler onclick; | 46 attribute EventHandler onclick; |
46 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow; | 47 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow; |
47 attribute EventHandler onerror; | 48 attribute EventHandler onerror; |
48 attribute EventHandler onclose; | 49 attribute EventHandler onclose; |
49 | 50 |
50 readonly attribute DOMString title; | 51 readonly attribute DOMString title; |
51 readonly attribute DOMString dir; | 52 readonly attribute DOMString dir; |
52 readonly attribute DOMString lang; | 53 readonly attribute DOMString lang; |
53 readonly attribute DOMString body; | 54 readonly attribute DOMString body; |
54 readonly attribute DOMString tag; | 55 readonly attribute DOMString tag; |
55 readonly attribute DOMString icon; | 56 readonly attribute DOMString icon; |
56 | 57 |
57 [MeasureAs=NotificationClosed] void close(); | 58 [MeasureAs=NotificationClosed] void close(); |
58 }; | 59 }; |
OLD | NEW |