Fix obvious bugs in browser_bug554155.js

This commit is contained in:
Dão Gottwald 2010-06-12 07:43:58 +02:00
Родитель 902bdbc993
Коммит 8172c0611e
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -16,13 +16,15 @@ function test() {
}
};
gBrowser.addTabsProgressListener(listener, Components.interfaces.nsIWebProgress.NOTIFY_ALL);
gBrowser.addTabsProgressListener(listener);
// pushState to a new URL (http://example.com/foo"). This should trigger
// exactly one LocationChange event.
tab.linkedBrowser.contentWindow.history.pushState(null, null, "foo");
executeSoon(function() {
gBrowser.removeTab(tab);
gBrowser.removeTabsProgressListener(listener);
is(numLocationChanges, 1,
"pushState should cause exactly one LocationChange event.");
finish();