2015-05-03 22:32:37 +03: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 15:12:37 +04: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-29 01:24:29 +03:00
|
|
|
|
2011-07-15 14:31:34 +04:00
|
|
|
#include "nsHistory.h"
|
2013-09-06 10:43:16 +04:00
|
|
|
|
|
|
|
#include "jsapi.h"
|
2000-02-08 16:40:10 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2004-10-20 06:19:57 +04:00
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsPresContext.h"
|
2000-02-08 16:40:10 +03:00
|
|
|
#include "nsIDocShell.h"
|
2000-03-11 14:58:13 +03:00
|
|
|
#include "nsIWebNavigation.h"
|
2000-08-03 01:48:32 +04:00
|
|
|
#include "nsIURI.h"
|
2004-10-20 06:19:57 +04: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 21:42:36 +04:00
|
|
|
#include "nsReadableUtils.h"
|
2004-09-01 20:50:12 +04:00
|
|
|
#include "nsContentUtils.h"
|
2013-09-06 10:43:16 +04:00
|
|
|
#include "nsISHistory.h"
|
2009-09-01 20:45:05 +04:00
|
|
|
#include "nsISHistoryInternal.h"
|
2011-05-25 10:31:59 +04:00
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
|
|
|
using namespace mozilla;
|
2013-08-10 10:47:59 +04:00
|
|
|
using namespace mozilla::dom;
|
2009-09-01 20:45:05 +04:00
|
|
|
|
1999-01-29 01:24:29 +03:00
|
|
|
//
|
2013-08-10 10:47:59 +04:00
|
|
|
// History class implementation
|
1999-01-29 01:24:29 +03:00
|
|
|
//
|
2013-08-10 10:47:59 +04: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_END
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsHistory::nsHistory(nsPIDOMWindowInner* aInnerWindow)
|
2011-02-01 20:19:35 +03:00
|
|
|
: mInnerWindow(do_GetWeakReference(aInnerWindow))
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2004-12-10 22:48:22 +03:00
|
|
|
nsHistory::~nsHistory()
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowInner*
|
2013-08-10 10:47:59 +04:00
|
|
|
nsHistory::GetParentObject() const
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 10:47:59 +04:00
|
|
|
return win;
|
1999-01-29 01:24:29 +03:00
|
|
|
}
|
|
|
|
|
2013-08-10 10:47:59 +04: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 17:13:33 +03:00
|
|
|
nsHistory::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto)
|
1999-01-29 01:24:29 +03: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 17:13:33 +03:00
|
|
|
return HistoryBinding::Wrap(aCx, this, aGivenProto);
|
1999-01-29 01:24:29 +03:00
|
|
|
}
|
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
uint32_t
|
|
|
|
nsHistory::GetLength(ErrorResult& aRv) const
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2011-02-01 20:19:35 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return 0;
|
|
|
|
}
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2000-11-28 02:10:09 +03:00
|
|
|
// Get session History from docshell
|
2018-02-02 01:35:47 +03:00
|
|
|
RefPtr<ChildSHistory> sHistory = GetSessionHistory();
|
2013-08-10 10:47:59 +04:00
|
|
|
if (!sHistory) {
|
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return 0;
|
|
|
|
}
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
int32_t len = sHistory->Count();;
|
2013-08-10 10:47:59 +04:00
|
|
|
return len >= 0 ? len : 0;
|
1999-01-29 01:24:29 +03:00
|
|
|
}
|
|
|
|
|
2015-12-26 13:59:09 +03:00
|
|
|
ScrollRestoration
|
|
|
|
nsHistory::GetScrollRestoration(mozilla::ErrorResult& aRv)
|
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2015-12-26 13:59:09 +03: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 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2015-12-26 13:59:09 +03: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-12 00:26:52 +04:00
|
|
|
void
|
|
|
|
nsHistory::GetState(JSContext* aCx, JS::MutableHandle<JS::Value> aResult,
|
|
|
|
ErrorResult& aRv) const
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 10:47:59 +04:00
|
|
|
if (!win) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
nsCOMPtr<nsIDocument> doc =
|
|
|
|
do_QueryInterface(win->GetExtantDoc());
|
|
|
|
if (!doc) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-08-10 10:47:59 +04: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 21:42:36 +04:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
nsCOMPtr<nsIVariant> variant;
|
|
|
|
doc->GetStateObject(getter_AddRefs(variant));
|
1999-01-29 01:24:29 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
if (variant) {
|
2014-06-12 00:26:52 +04:00
|
|
|
aRv = variant->GetAsJSVal(aResult);
|
2013-02-20 20:37:21 +04:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
if (aRv.Failed()) {
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
if (!JS_WrapValue(aCx, aResult)) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
}
|
2000-03-11 14:58:13 +03:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
return;
|
2013-08-10 10:47:59 +04: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 21:42:36 +04:00
|
|
|
|
2014-06-12 00:26:52 +04:00
|
|
|
aResult.setNull();
|
1999-01-29 01:24:29 +03:00
|
|
|
}
|
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
void
|
|
|
|
nsHistory::Go(int32_t aDelta, ErrorResult& aRv)
|
1999-01-29 01:24:29 +03:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04: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 21:42:36 +04:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-02-20 20:37:21 +04:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
if (!aDelta) {
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> window;
|
2014-01-10 06:03:47 +04:00
|
|
|
if (nsIDocShell* docShell = GetDocShell()) {
|
|
|
|
window = docShell->GetWindow();
|
|
|
|
}
|
2004-10-20 06:19:57 +04: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 08:22:37 +04:00
|
|
|
nsCOMPtr<nsIDocument> doc = window->GetExtantDoc();
|
2004-10-20 06:19:57 +04:00
|
|
|
|
|
|
|
nsPresContext *pcx;
|
2018-02-21 01:00:10 +03:00
|
|
|
if (doc && (pcx = doc->GetPresContext())) {
|
2014-10-09 01:26:57 +04:00
|
|
|
pcx->RebuildAllStyleData(NS_STYLE_HINT_REFLOW, eRestyle_Subtree);
|
2004-10-20 06:19:57 +04:00
|
|
|
}
|
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return;
|
2004-10-20 06:19:57 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
RefPtr<ChildSHistory> session_history = GetSessionHistory();
|
|
|
|
if (!session_history) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2008-09-06 01:54:53 +04:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
// Ignore the return value from Go(), since returning errors from Go() can
|
|
|
|
// lead to exceptions and a possible leak of history length
|
|
|
|
session_history->Go(aDelta, IgnoreErrors());
|
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 21:42:36 +04:00
|
|
|
}
|
2000-08-17 09:56:44 +04:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
void
|
|
|
|
nsHistory::Back(ErrorResult& aRv)
|
2009-09-01 20:45:05 +04:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
|
|
|
|
|
|
|
return;
|
2011-05-25 10:31:59 +04:00
|
|
|
}
|
2009-09-01 20:45:05 +04:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
RefPtr<ChildSHistory> sHistory = GetSessionHistory();
|
|
|
|
if (!sHistory) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
sHistory->Go(-1, IgnoreErrors());
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsHistory::Forward(ErrorResult& aRv)
|
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win || !win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_DOM_SECURITY_ERR);
|
2011-02-01 20:19:35 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return;
|
|
|
|
}
|
2009-09-01 20:45:05 +04:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
RefPtr<ChildSHistory> sHistory = GetSessionHistory();
|
|
|
|
if (!sHistory) {
|
2013-08-10 10:47:59 +04:00
|
|
|
aRv.Throw(NS_ERROR_FAILURE);
|
2011-02-01 20:19:35 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
return;
|
|
|
|
}
|
2009-09-01 20:45:05 +04:00
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
sHistory->Go(1, IgnoreErrors());
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|
2009-09-01 20:45:05 +04:00
|
|
|
|
2013-08-10 10:47:59 +04: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 20:45:05 +04:00
|
|
|
}
|
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
void
|
|
|
|
nsHistory::ReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
ErrorResult& aRv)
|
2009-09-01 20:45:05 +04:00
|
|
|
{
|
2013-08-10 10:47:59 +04:00
|
|
|
PushOrReplaceState(aCx, aData, aTitle, aUrl, aRv, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-08-24 04:23:37 +04:00
|
|
|
nsHistory::PushOrReplaceState(JSContext* aCx, JS::Handle<JS::Value> aData,
|
2013-08-10 10:47:59 +04:00
|
|
|
const nsAString& aTitle, const nsAString& aUrl,
|
|
|
|
ErrorResult& aRv, bool aReplace)
|
2000-11-28 02:10:09 +03:00
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win(do_QueryReferent(mInnerWindow));
|
2013-08-10 10:47:59 +04:00
|
|
|
if (!win) {
|
|
|
|
aRv.Throw(NS_ERROR_NOT_AVAILABLE);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-27 20:16:07 +04:00
|
|
|
if (!win->HasActiveDocument()) {
|
2013-08-10 10:47:59 +04: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-28 02:10:09 +03:00
|
|
|
|
2013-08-10 10:47:59 +04: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 10:43:16 +04:00
|
|
|
nsIDocShell*
|
|
|
|
nsHistory::GetDocShell() const
|
|
|
|
{
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowInner> win = do_QueryReferent(mInnerWindow);
|
2013-09-06 10:43:16 +04:00
|
|
|
if (!win) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return win->GetDocShell();
|
|
|
|
}
|
|
|
|
|
2018-02-02 01:35:47 +03:00
|
|
|
already_AddRefed<ChildSHistory>
|
2013-08-10 10:47:59 +04:00
|
|
|
nsHistory::GetSessionHistory() const
|
|
|
|
{
|
|
|
|
nsIDocShell *docShell = GetDocShell();
|
|
|
|
NS_ENSURE_TRUE(docShell, nullptr);
|
2000-11-28 02:10:09 +03:00
|
|
|
|
|
|
|
// Get the root DocShell from it
|
|
|
|
nsCOMPtr<nsIDocShellTreeItem> root;
|
2013-08-10 10:47:59 +04:00
|
|
|
docShell->GetSameTypeRootTreeItem(getter_AddRefs(root));
|
|
|
|
nsCOMPtr<nsIWebNavigation> webNav(do_QueryInterface(root));
|
|
|
|
NS_ENSURE_TRUE(webNav, nullptr);
|
2000-11-28 02:10:09 +03:00
|
|
|
|
2013-08-10 10:47:59 +04:00
|
|
|
// Get SH from nsIWebNavigation
|
2018-02-02 01:35:47 +03:00
|
|
|
return webNav->GetSessionHistory();
|
2013-08-10 10:47:59 +04:00
|
|
|
}
|