Bug 1217357 - Update broken call to getContentWindow() from larch merge. r=kevingrandon

--HG--
extra : rebase_source : b5f329530cfe38d70ce7fed6d5b2028c4919d99a
This commit is contained in:
Tim Chien 2015-10-22 21:05:00 +02:00
Родитель 4e6cb8fda5
Коммит a277769c95
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -105,9 +105,9 @@ function clearCache() {
function clearCacheAndReload() {
// Reload the main frame with a cleared cache.
debug('Reloading ' + getContentWindow().location);
debug('Reloading ' + shell.contentBrowser.contentWindow.location);
clearCache();
getContentWindow().location.reload(true);
shell.contentBrowser.contentWindow.location.reload(true);
once('mozbrowserlocationchange').then(
evt => {
shell.sendEvent(window, "ContentStart");