Bug 1251082. Restore comments in PageTransitionEvent.webidl that got lost when nsIDOMPageTransitionEvent.idl was migrated to webidl. r=bz

The mentioned migration happened in http://hg.mozilla.org/mozilla-central/rev/e6377ca32f3d from bug 1031051.

This the only documentation of the aPersisted parameter of nsIDocument::OnPageShow.
This commit is contained in:
Timothy Nikkel 2016-02-26 17:13:59 -06:00
Родитель 7d879da1e3
Коммит 59f526351b
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -4,9 +4,20 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* The PageTransitionEvent interface is used for the pageshow and
* pagehide events, which are generic events that apply to both page
* load/unload and saving/restoring a document from session history.
*/
[Constructor(DOMString type, optional PageTransitionEventInit eventInitDict)]
interface PageTransitionEvent : Event
{
/**
* Set to true if the document has been or will be persisted across
* firing of the event. For example, if a document is being cached in
* session history, |persisted| is true for the PageHide event.
*/
readonly attribute boolean persisted;
};