зеркало из https://github.com/mozilla/gecko-dev.git
Correctly implemented reload
This commit is contained in:
Родитель
1b8f8755bf
Коммит
c07c4a5ef1
|
@ -496,16 +496,10 @@ LocationImpl::SetSearch(const nsString& aSearch)
|
||||||
NS_IMETHODIMP
|
NS_IMETHODIMP
|
||||||
LocationImpl::Reload(JSContext *cx, jsval *argv, PRUint32 argc)
|
LocationImpl::Reload(JSContext *cx, jsval *argv, PRUint32 argc)
|
||||||
{
|
{
|
||||||
nsAutoString url;
|
|
||||||
PRInt32 index;
|
|
||||||
nsresult result = NS_OK;
|
nsresult result = NS_OK;
|
||||||
|
|
||||||
if (nsnull != mWebShell) {
|
if (nsnull != mWebShell) {
|
||||||
mWebShell->GetHistoryIndex(index);
|
result = mWebShell->Reload();
|
||||||
result = mWebShell->GetURL(index, url);
|
|
||||||
if (NS_OK == result) {
|
|
||||||
result = mWebShell->LoadURL(url, nsnull, PR_FALSE);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче