Bug 915726 - [Web Notifications] follow-up, change notification properties from Constant to Pure. r=gwagner

This commit is contained in:
Michael Henretty 2013-09-12 08:48:56 -07:00
parent 67e741a578
commit cdc9a74d46

View File

@ -27,22 +27,22 @@ interface Notification : EventTarget {
attribute EventHandler onclose;
[Constant]
[Pure]
readonly attribute DOMString title;
[Constant]
[Pure]
readonly attribute NotificationDirection dir;
[Constant]
[Pure]
readonly attribute DOMString? lang;
[Constant]
[Pure]
readonly attribute DOMString? body;
[Constant]
readonly attribute DOMString? tag;
[Constant]
[Pure]
readonly attribute DOMString? icon;
void close();