2015-05-03 19:32:37 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2011-07-15 10:31:34 +00:00
|
|
|
#include "nsHistory.h"
|
2013-09-06 06:43:16 +00:00
|
|
|
|
|
|
|
#include "jsapi.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2004-10-20 02:19:57 +00:00
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsPresContext.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDocShell.h"
|
2000-03-11 11:58:13 +00:00
|
|
|
#include "nsIWebNavigation.h"
|
2000-08-02 21:48:32 +00:00
|
|
|
#include "nsIURI.h"
|
2004-10-20 02:19:57 +00:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsReadableUtils.h"
|
2004-09-01 16:50:12 +00:00
|
|
|
#include "nsContentUtils.h"
|
2013-09-06 06:43:16 +00:00
|
|
|
#include "nsISHistory.h"
|
2009-09-01 16:45:05 +00:00
|
|
|
#include "nsISHistoryInternal.h"
|
2011-05-25 06:31:59 +00:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2013-08-10 06:47:59 +00:00
|
|
|
using namespace mozilla::dom;
|
2009-09-01 16:45:05 +00:00
|
|
|
|
1999-01-28 22:24:29 +00:00
|
|
|
//
|
2013-08-10 06:47:59 +00:00
|
|
|
// History class implementation
|
1999-01-28 22:24:29 +00:00
|
|
|
//
|
2013-08-10 06:47:59 +00:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE_0(nsHistory)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsHistory)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsHistory)
|
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsHistory)
|
|
|
|
NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupports)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMHistory) // Empty, needed for extension compat
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsHistory::nsHistory(nsPIDOMWindowInner* aInnerWindow)
|
2011-02-01 17:19:35 +00:00
|
|
|
: mInnerWindow(do_GetWeakReference(aInnerWindow))
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2015-07-17 05:10:35 +00:00
|
|
|
MOZ_ASSERT(aInnerWindow->IsInnerWindow());
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
nsHistory::~nsHistory()
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-30 17:05:36 +00:00
|
|
|
nsPIDOMWindowInner*
|
2013-08-10 06:47:59 +00:00
|
|
|
nsHistory::GetParentObject() const
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 06:47:59 +00:00
|
|
|
return win;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
JSObject*
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
nsHistory::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
Bug 1117172 part 3. Change the wrappercached WrapObject methods to allow passing in aGivenProto. r=peterv
The only manual changes here are to BindingUtils.h, BindingUtils.cpp,
Codegen.py, Element.cpp, IDBFileRequest.cpp, IDBObjectStore.cpp,
dom/workers/Navigator.cpp, WorkerPrivate.cpp, DeviceStorageRequestChild.cpp,
Notification.cpp, nsGlobalWindow.cpp, MessagePort.cpp, nsJSEnvironment.cpp,
Sandbox.cpp, XPCConvert.cpp, ExportHelpers.cpp, and DataStoreService.cpp. The
rest of this diff was generated by running the following commands:
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObjectInternal\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapNode\((?:aCx|cx|aContext|aCtx|js))\)/\1, aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(WrapObject\(JSContext *\* *(?:aCx|cx|aContext|aCtx|js))\)/\1, JS::Handle<JSObject*> aGivenProto)/g'
find . -name "*.h" -o -name "*.cpp" | xargs perl -pi -e 'BEGIN { $/ = undef } s/(Binding(?:_workers)?::Wrap\((?:aCx|cx|aContext|aCtx|js), [^,)]+)\)/\1, aGivenProto)/g'
2015-03-19 14:13:33 +00:00
|
|
|
return HistoryBinding::Wrap(aCx, this, aGivenProto);
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
uint32_t
|
|
|
|
nsHistory::GetLength(ErrorResult& aRv) const
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2011-02-01 17:19:35 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2000-11-27 23:10:09 +00:00
|
|
|
// Get session History from docshell
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsISHistory> sHistory = GetSessionHistory();
|
|
|
|
if (!sHistory) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
int32_t len;
|
|
|
|
nsresult rv = sHistory->GetCount(&len);
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aRv.Throw(rv);
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return len >= 0 ? len : 0;
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2015-12-26 10:59:09 +00:00
|
|
|
ScrollRestoration
|
|
|
|
nsHistory::GetScrollRestoration(mozilla::ErrorResult& aRv)
|
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2015-12-26 10:59:09 +00:00
|
|
|
if (!win || !win->HasActiveDocument() || !win->GetDocShell()) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
|
|
return mozilla::dom::ScrollRestoration::Auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool currentScrollRestorationIsManual = false;
|
|
|
|
win->GetDocShell()->
|
|
|
|
GetCurrentScrollRestorationIsManual(¤tScrollRestorationIsManual);
|
|
|
|
return currentScrollRestorationIsManual ?
|
|
|
|
mozilla::dom::ScrollRestoration::Manual :
|
|
|
|
mozilla::dom::ScrollRestoration::Auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHistory::SetScrollRestoration(mozilla::dom::ScrollRestoration aMode,
|
|
|
|
mozilla::ErrorResult& aRv)
|
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2015-12-26 10:59:09 +00:00
|
|
|
if (!win || !win->HasActiveDocument() || !win->GetDocShell()) {
|
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
win->GetDocShell()->
|
|
|
|
SetCurrentScrollRestorationIsManual(
|
|
|
|
aMode == mozilla::dom::ScrollRestoration::Manual);
|
|
|
|
}
|
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
void
|
|
|
|
nsHistory::GetState(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv) const
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 06:47:59 +00:00
|
|
|
if (!win) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
2014-06-11 20:26:52 +00:00
|
|
|
return;
|
2013-08-10 06:47:59 +00:00
|
|
|
}
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2014-06-11 20:26:52 +00:00
|
|
|
return;
|
2013-08-10 06:47:59 +00:00
|
|
|
}
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc =
|
|
|
|
do_QueryInterface(win->GetExtantDoc());
|
|
|
|
if (!doc) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
2014-06-11 20:26:52 +00:00
|
|
|
return;
|
2013-08-10 06:47:59 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsIVariant> variant;
|
|
|
|
doc->GetStateObject(getter_AddRefs(variant));
|
1999-01-28 22:24:29 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
if (variant) {
|
2014-06-11 20:26:52 +00:00
|
|
|
aRv = variant->GetAsJSVal(aResult);
|
2013-02-20 16:37:21 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
if (aRv.Failed()) {
|
2014-06-11 20:26:52 +00:00
|
|
|
return;
|
2013-08-10 06:47:59 +00:00
|
|
|
}
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
if (!JS_WrapValue(aCx, aResult)) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
}
|
2000-03-11 11:58:13 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
return;
|
2013-08-10 06:47:59 +00:00
|
|
|
}
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2014-06-11 20:26:52 +00:00
|
|
|
aResult.setNull();
|
1999-01-28 22:24:29 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
void
|
|
|
|
nsHistory::Go(int32_t aDelta, ErrorResult& aRv)
|
1999-01-28 22:24:29 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-02-20 16:37:21 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
if (!aDelta) {
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> window;
|
2014-01-10 02:03:47 +00:00
|
|
|
if (nsIDocShell* docShell = GetDocShell()) {
|
|
|
|
window = docShell->GetWindow();
|
|
|
|
}
|
2004-10-20 02:19:57 +00:00
|
|
|
|
|
|
|
if (window && window->IsHandlingResizeEvent()) {
|
|
|
|
// history.go(0) (aka location.reload()) was called on a window
|
|
|
|
// that is handling a resize event. Sites do this since Netscape
|
|
|
|
// 4.x needed it, but we don't, and it's a horrible experience
|
|
|
|
// for nothing. In stead of reloading the page, just clear
|
|
|
|
// style data and reflow the page since some sites may use this
|
|
|
|
// trick to work around gecko reflow bugs, and this should have
|
|
|
|
// the same effect.
|
|
|
|
|
2013-04-24 04:22:37 +00:00
|
|
|
nsCOMPtr<nsIDocument> doc = window->GetExtantDoc();
|
2004-10-20 02:19:57 +00:00
|
|
|
|
|
|
|
nsIPresShell *shell;
|
|
|
|
nsPresContext *pcx;
|
2010-06-25 13:59:57 +00:00
|
|
|
if (doc && (shell = doc->GetShell()) && (pcx = shell->GetPresContext())) {
|
2014-10-08 21:26:57 +00:00
|
|
|
pcx->RebuildAllStyleData(NS_STYLE_HINT_REFLOW, eRestyle_Subtree);
|
2004-10-20 02:19:57 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return;
|
2004-10-20 02:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsISHistory> session_history = GetSessionHistory();
|
2008-09-05 21:54:53 +00:00
|
|
|
nsCOMPtr<nsIWebNavigation> webnav(do_QueryInterface(session_history));
|
2013-08-10 06:47:59 +00:00
|
|
|
if (!webnav) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2008-09-05 21:54:53 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
int32_t curIndex = -1;
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t len = 0;
|
2012-07-27 14:03:28 +00:00
|
|
|
session_history->GetIndex(&curIndex);
|
|
|
|
session_history->GetCount(&len);
|
2008-09-05 21:54:53 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t index = curIndex + aDelta;
|
2013-08-10 06:47:59 +00:00
|
|
|
if (index > -1 && index < len)
|
2008-09-05 21:54:53 +00:00
|
|
|
webnav->GotoIndex(index);
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
// Ignore the return value from GotoIndex(), since returning errors
|
2008-09-05 21:54:53 +00:00
|
|
|
// from GotoIndex() can lead to exceptions and a possible leak
|
|
|
|
// of history length
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
}
|
2000-08-17 05:56:44 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
void
|
|
|
|
nsHistory::Back(ErrorResult& aRv)
|
2009-09-01 16:45:05 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
|
|
|
|
|
|
return;
|
2011-05-25 06:31:59 +00:00
|
|
|
}
|
2009-09-01 16:45:05 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsISHistory> sHistory = GetSessionHistory();
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(sHistory));
|
|
|
|
if (!webNav) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
webNav->GoBack();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHistory::Forward(ErrorResult& aRv)
|
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2011-02-01 17:19:35 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-09-01 16:45:05 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsISHistory> sHistory = GetSessionHistory();
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(sHistory));
|
|
|
|
if (!webNav) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
2011-02-01 17:19:35 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-09-01 16:45:05 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
webNav->GoForward();
|
|
|
|
}
|
2009-09-01 16:45:05 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
void
|
|
|
|
nsHistory::PushState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
PushOrReplaceState(aCx, aData, aTitle, aUrl, aRv, false);
|
2009-09-01 16:45:05 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
void
|
|
|
|
nsHistory::ReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
ErrorResult& aRv)
|
2009-09-01 16:45:05 +00:00
|
|
|
{
|
2013-08-10 06:47:59 +00:00
|
|
|
PushOrReplaceState(aCx, aData, aTitle, aUrl, aRv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-08-24 00:23:37 +00:00
|
|
|
nsHistory::PushOrReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
2013-08-10 06:47:59 +00:00
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
ErrorResult& aRv, bool aReplace)
|
2000-11-27 23:10:09 +00:00
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 06:47:59 +00:00
|
|
|
if (!win) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-27 16:16:07 +00:00
|
|
|
if (!win->HasActiveDocument()) {
|
2013-08-10 06:47:59 +00:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddState might run scripts, so we need to hold a strong reference to the
|
|
|
|
// docShell here to keep it from going away.
|
|
|
|
nsCOMPtr<nsIDocShell> docShell = win->GetDocShell();
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
if (!docShell) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The "replace" argument tells the docshell to whether to add a new
|
|
|
|
// history entry or modify the current one.
|
|
|
|
|
|
|
|
aRv = docShell->AddState(aData, aTitle, aUrl, aReplace, aCx);
|
|
|
|
}
|
|
|
|
|
2013-09-06 06:43:16 +00:00
|
|
|
nsIDocShell*
|
|
|
|
nsHistory::GetDocShell() const
|
|
|
|
{
|
2016-01-30 17:05:36 +00:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win = do_QueryReferent(mInnerWindow);
|
2013-09-06 06:43:16 +00:00
|
|
|
if (!win) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return win->GetDocShell();
|
|
|
|
}
|
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
already_AddRefed<nsISHistory>
|
|
|
|
nsHistory::GetSessionHistory() const
|
|
|
|
{
|
|
|
|
nsIDocShell *docShell = GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(docShell, nullptr);
|
2000-11-27 23:10:09 +00:00
|
|
|
|
|
|
|
// Get the root DocShell from it
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> root;
|
2013-08-10 06:47:59 +00:00
|
|
|
docShell->GetSameTypeRootTreeItem(getter_AddRefs(root));
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(root));
|
|
|
|
NS_ENSURE_TRUE(webNav, nullptr);
|
2000-11-27 23:10:09 +00:00
|
|
|
|
2013-08-10 06:47:59 +00:00
|
|
|
nsCOMPtr<nsISHistory> shistory;
|
|
|
|
|
|
|
|
// Get SH from nsIWebNavigation
|
|
|
|
webNav->GetSessionHistory(getter_AddRefs(shistory));
|
|
|
|
|
|
|
|
return shistory.forget();
|
|
|
|
}
|