Bug 795317: Use exposable uri when updating mozbrowser's location r=jlebar

This commit is contained in:
Patrick Wang 2012-10-16 18:24:35 +08:00
Родитель 8ebb5385aa
Коммит 3c5fbe062a
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -621,6 +621,10 @@ BrowserElementChild.prototype = {
return;
}
// Remove password and wyciwyg from uri.
location = Cc["@mozilla.org/docshell/urifixup;1"]
.getService(Ci.nsIURIFixup).createExposableURI(location);
sendAsyncMsg('locationchange', location.spec);
},