Bug 772275 - Make mozvisibilitychange event bubble, per spec. r=bz

This commit is contained in:
Justin Lebar 2012-07-09 23:32:47 -04:00
Родитель 83b880e2aa
Коммит aade2fe5ea
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -9542,7 +9542,8 @@ nsDocument::UpdateVisibilityState()
if (oldState != mVisibilityState) {
nsContentUtils::DispatchTrustedEvent(this, static_cast<nsIDocument*>(this),
NS_LITERAL_STRING("mozvisibilitychange"),
false, false);
/* bubbles = */ true,
/* cancelable = */ false);
}
}