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 18 matching lines...) Expand all Loading... |
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 Exposed=(Window,Worker), |
38 MeasureAs=NotificationCreated, | 38 MeasureAs=NotificationCreated, |
| 39 RaisesException=Constructor, |
39 RuntimeEnabled=Notifications, | 40 RuntimeEnabled=Notifications, |
40 ] interface Notification : EventTarget { | 41 ] interface Notification : EventTarget { |
41 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl
y attribute DOMString permission; | 42 [CallWith=ExecutionContext, MeasureAs=NotificationPermission] static readonl
y attribute DOMString permission; |
42 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati
c void requestPermission(optional NotificationPermissionCallback callback); | 43 [CallWith=ExecutionContext, MeasureAs=NotificationPermissionRequested] stati
c void requestPermission(optional NotificationPermissionCallback callback); |
43 | 44 |
44 // FIXME: Implement the Notification.get() method. | 45 // FIXME: Implement the Notification.get() method. |
45 | 46 |
46 attribute EventHandler onclick; | 47 attribute EventHandler onclick; |
47 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow; | 48 [MeasureAs=NotificationShowEvent] attribute EventHandler onshow; |
48 attribute EventHandler onerror; | 49 attribute EventHandler onerror; |
49 [MeasureAs=NotificationCloseEvent] attribute EventHandler onclose; | 50 [MeasureAs=NotificationCloseEvent] attribute EventHandler onclose; |
50 | 51 |
51 readonly attribute DOMString title; | 52 readonly attribute DOMString title; |
52 readonly attribute DOMString dir; | 53 readonly attribute DOMString dir; |
53 readonly attribute DOMString lang; | 54 readonly attribute DOMString lang; |
54 readonly attribute DOMString body; | 55 readonly attribute DOMString body; |
55 readonly attribute DOMString tag; | 56 readonly attribute DOMString tag; |
56 readonly attribute DOMString icon; | 57 readonly attribute DOMString icon; |
57 | 58 |
58 [MeasureAs=NotificationClosed] void close(); | 59 [MeasureAs=NotificationClosed] void close(); |
59 }; | 60 }; |
OLD | NEW |