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
Родитель dbc95f00f4
Коммит 6710c56b3e
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -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();