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/. */
|
1998-04-14 00:24:54 +04:00
|
|
|
#ifndef nsHTMLDocument_h___
|
|
|
|
#define nsHTMLDocument_h___
|
|
|
|
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#include "nsDocument.h"
|
|
|
|
#include "nsIHTMLDocument.h"
|
2017-11-13 18:41:33 +03:00
|
|
|
#include "nsIHTMLCollection.h"
|
2006-01-24 04:25:14 +03:00
|
|
|
#include "nsIScriptElement.h"
|
2009-03-20 11:15:35 +03:00
|
|
|
#include "nsTArray.h"
|
2006-08-15 02:36:15 +04:00
|
|
|
|
2015-09-16 06:49:53 +03:00
|
|
|
#include "PLDHashTable.h"
|
2002-03-02 04:26:49 +03:00
|
|
|
#include "nsIHttpChannel.h"
|
2017-09-14 21:56:58 +03:00
|
|
|
#include "nsThreadUtils.h"
|
2002-11-07 18:36:25 +03:00
|
|
|
#include "nsICommandManager.h"
|
2013-02-08 16:20:11 +04:00
|
|
|
#include "mozilla/dom/HTMLSharedElement.h"
|
2016-11-15 08:18:33 +03:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2001-05-25 12:49:03 +04:00
|
|
|
|
2001-11-16 05:03:19 +03:00
|
|
|
class nsIURI;
|
2012-01-24 13:52:05 +04:00
|
|
|
class nsIDocShell;
|
2010-06-24 10:55:19 +04:00
|
|
|
class nsICachingChannel;
|
2013-06-11 04:18:29 +04:00
|
|
|
class nsIWyciwygChannel;
|
|
|
|
class nsILoadGroup;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-09-06 10:41:42 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class HTMLAllCollection;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2003-03-26 10:41:30 +03:00
|
|
|
class nsHTMLDocument : public nsDocument, public nsIHTMLDocument {
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2012-04-27 22:17:22 +04:00
|
|
|
using nsDocument::GetPlugins;
|
2011-03-26 19:06:27 +03:00
|
|
|
using nsDocument::SetDocumentURI;
|
|
|
|
|
2013-05-06 17:42:00 +04:00
|
|
|
nsHTMLDocument();
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult Init() override;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-06-14 21:10:12 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2013-09-06 10:41:42 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsHTMLDocument, nsDocument)
|
1998-07-23 03:32:19 +04:00
|
|
|
|
2013-06-12 10:55:00 +04:00
|
|
|
// nsIDocument
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void Reset(nsIChannel* aChannel, nsILoadGroup* aLoadGroup) override;
|
2006-11-22 21:27:54 +03:00
|
|
|
virtual void ResetToURI(nsIURI* aURI, nsILoadGroup* aLoadGroup,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIPrincipal* aPrincipal) override;
|
2001-03-12 09:39:27 +03:00
|
|
|
|
2004-01-10 02:54:21 +03:00
|
|
|
virtual nsresult StartDocumentLoad(const char* aCommand, nsIChannel* aChannel,
|
|
|
|
nsILoadGroup* aLoadGroup,
|
|
|
|
nsISupports* aContainer,
|
|
|
|
nsIStreamListener** aDocListener,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool aReset = true,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIContentSink* aSink = nullptr) override;
|
|
|
|
virtual void StopDocumentLoad() override;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void BeginLoad() override;
|
|
|
|
virtual void EndLoad() override;
|
1998-07-24 02:06:05 +04:00
|
|
|
|
2013-06-12 10:55:00 +04:00
|
|
|
// nsIHTMLDocument
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetCompatibilityMode(nsCompatibility aMode) override;
|
1998-09-02 06:07:42 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool IsWriting() override { return mWriteLevel != uint32_t(0); }
|
2002-04-19 02:11:17 +04:00
|
|
|
|
2017-07-13 23:53:26 +03:00
|
|
|
virtual nsIContent* GetUnfocusedKeyEventTarget() override;
|
|
|
|
|
2017-08-27 05:44:34 +03:00
|
|
|
nsContentList* GetExistingForms() const { return mForms; }
|
|
|
|
|
2014-02-09 12:02:45 +04:00
|
|
|
mozilla::dom::HTMLAllCollection* All();
|
2010-05-10 20:43:20 +04:00
|
|
|
|
2016-12-09 20:02:50 +03:00
|
|
|
// Returns whether an object was found for aName.
|
|
|
|
bool ResolveName(JSContext* aCx, const nsAString& aName,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-05-30 00:43:41 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void AddedForm() override;
|
|
|
|
virtual void RemovedForm() override;
|
|
|
|
virtual int32_t GetNumFormsSynchronous() override;
|
2017-08-07 08:25:52 +03:00
|
|
|
virtual void TearingDownEditor() override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetIsXHTML(bool aXHTML) override {
|
2014-05-24 23:28:48 +04:00
|
|
|
mType = (aXHTML ? eXHTML : eHTML);
|
|
|
|
}
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void SetDocWriteDisabled(bool aDisabled) override {
|
2009-11-06 07:27:30 +03:00
|
|
|
mDisableDocWrite = aDisabled;
|
|
|
|
}
|
2003-04-19 04:28:09 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
nsresult ChangeContentEditableCount(nsIContent* aElement,
|
|
|
|
int32_t aChange) override;
|
2010-05-13 02:21:24 +04:00
|
|
|
void DeferredContentEditableCountChange(nsIContent* aElement);
|
2007-06-28 06:48:16 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual EditingState GetEditingState() override { return mEditingState; }
|
2007-06-28 06:48:16 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void DisableCookieAccess() override { mDisableCookieAccess = true; }
|
2008-10-01 04:49:30 +04:00
|
|
|
|
2008-09-18 06:32:44 +04:00
|
|
|
class nsAutoEditingState {
|
|
|
|
public:
|
|
|
|
nsAutoEditingState(nsHTMLDocument* aDoc, EditingState aState)
|
|
|
|
: mDoc(aDoc), mSavedState(aDoc->mEditingState) {
|
|
|
|
aDoc->mEditingState = aState;
|
|
|
|
}
|
|
|
|
~nsAutoEditingState() { mDoc->mEditingState = mSavedState; }
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2008-09-18 06:32:44 +04:00
|
|
|
private:
|
|
|
|
nsHTMLDocument* mDoc;
|
|
|
|
EditingState mSavedState;
|
|
|
|
};
|
|
|
|
friend class nsAutoEditingState;
|
2008-02-19 21:47:34 +03:00
|
|
|
|
2018-05-15 16:56:38 +03:00
|
|
|
void EndUpdate() override;
|
2007-10-26 14:30:44 +04:00
|
|
|
|
2017-03-15 07:22:06 +03:00
|
|
|
virtual void SetMayStartLayout(bool aMayStartLayout) override;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual nsresult SetEditingState(EditingState aState) override;
|
2008-04-24 01:36:17 +04:00
|
|
|
|
2018-08-09 02:58:44 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo*,
|
|
|
|
nsINode** aResult) const override;
|
2008-09-18 15:15:47 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void RemovedFromDocShell() override;
|
2017-12-21 01:29:21 +03:00
|
|
|
using mozilla::dom::DocumentOrShadowRoot::GetElementById;
|
2010-04-19 19:41:38 +04:00
|
|
|
|
2017-08-10 07:13:22 +03:00
|
|
|
virtual void DocAddSizeOfExcludingThis(
|
|
|
|
nsWindowSizes& aWindowSizes) const override;
|
2013-10-01 03:20:23 +04:00
|
|
|
// DocAddSizeOfIncludingThis is inherited from nsIDocument.
|
2012-02-02 01:58:01 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool WillIgnoreCharsetOverride() override;
|
2013-01-18 18:27:03 +04:00
|
|
|
|
2012-12-26 06:00:47 +04:00
|
|
|
// WebIDL API
|
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
|
|
|
virtual JSObject* WrapNode(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2018-01-26 09:00:04 +03:00
|
|
|
void GetDomain(nsAString& aDomain);
|
2012-12-26 06:00:47 +04:00
|
|
|
void SetDomain(const nsAString& aDomain, mozilla::ErrorResult& rv);
|
2017-03-07 19:37:34 +03:00
|
|
|
bool IsRegistrableDomainSuffixOfOrEqualTo(const nsAString& aHostSuffixString,
|
|
|
|
const nsACString& aOrigHost);
|
2012-12-26 06:00:47 +04:00
|
|
|
void GetCookie(nsAString& aCookie, mozilla::ErrorResult& rv);
|
|
|
|
void SetCookie(const nsAString& aCookie, mozilla::ErrorResult& rv);
|
2014-06-12 00:26:52 +04:00
|
|
|
void NamedGetter(JSContext* cx, const nsAString& aName, bool& aFound,
|
|
|
|
JS::MutableHandle<JSObject*> aRetval,
|
2016-12-09 20:02:50 +03:00
|
|
|
mozilla::ErrorResult& rv) {
|
|
|
|
JS::Rooted<JS::Value> v(cx);
|
|
|
|
if ((aFound = ResolveName(cx, aName, &v, rv))) {
|
|
|
|
aRetval.set(v.toObjectOrNull());
|
|
|
|
}
|
|
|
|
}
|
2016-05-10 05:25:40 +03:00
|
|
|
void GetSupportedNames(nsTArray<nsString>& aNames);
|
2012-12-26 06:00:47 +04:00
|
|
|
already_AddRefed<nsIDocument> Open(
|
2018-03-29 01:01:46 +03:00
|
|
|
JSContext* cx, const mozilla::dom::Optional<nsAString>& /* unused */,
|
2017-09-13 20:34:58 +03:00
|
|
|
const nsAString& aReplace, mozilla::ErrorResult& aError);
|
2016-01-30 20:05:36 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> Open(
|
|
|
|
JSContext* cx, const nsAString& aURL, const nsAString& aName,
|
|
|
|
const nsAString& aFeatures, bool aReplace, mozilla::ErrorResult& rv);
|
2012-12-26 06:00:47 +04:00
|
|
|
void Close(mozilla::ErrorResult& rv);
|
|
|
|
void Write(JSContext* cx, const mozilla::dom::Sequence<nsString>& aText,
|
|
|
|
mozilla::ErrorResult& rv);
|
|
|
|
void Writeln(JSContext* cx, const mozilla::dom::Sequence<nsString>& aText,
|
|
|
|
mozilla::ErrorResult& rv);
|
2018-01-26 09:00:49 +03:00
|
|
|
void GetDesignMode(nsAString& aDesignMode);
|
2016-10-11 04:07:48 +03:00
|
|
|
void SetDesignMode(const nsAString& aDesignMode,
|
|
|
|
nsIPrincipal& aSubjectPrincipal, mozilla::ErrorResult& rv);
|
2016-10-03 11:34:14 +03:00
|
|
|
void SetDesignMode(const nsAString& aDesignMode,
|
|
|
|
const mozilla::Maybe<nsIPrincipal*>& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& rv);
|
2012-12-26 06:00:47 +04:00
|
|
|
bool ExecCommand(const nsAString& aCommandID, bool aDoShowUI,
|
2017-02-01 23:43:36 +03:00
|
|
|
const nsAString& aValue, nsIPrincipal& aSubjectPrincipal,
|
2016-11-15 08:18:33 +03:00
|
|
|
mozilla::ErrorResult& rv);
|
2012-12-26 06:00:47 +04:00
|
|
|
bool QueryCommandEnabled(const nsAString& aCommandID,
|
2017-02-01 23:43:36 +03:00
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
2012-12-26 06:00:47 +04:00
|
|
|
mozilla::ErrorResult& rv);
|
|
|
|
bool QueryCommandIndeterm(const nsAString& aCommandID,
|
|
|
|
mozilla::ErrorResult& rv);
|
|
|
|
bool QueryCommandState(const nsAString& aCommandID, mozilla::ErrorResult& rv);
|
2016-11-15 08:18:33 +03:00
|
|
|
bool QueryCommandSupported(const nsAString& aCommandID,
|
|
|
|
mozilla::dom::CallerType aCallerType);
|
2012-12-26 06:00:47 +04:00
|
|
|
void QueryCommandValue(const nsAString& aCommandID, nsAString& aValue,
|
|
|
|
mozilla::ErrorResult& rv);
|
2018-01-26 09:01:08 +03:00
|
|
|
void GetFgColor(nsAString& aFgColor);
|
|
|
|
void SetFgColor(const nsAString& aFgColor);
|
|
|
|
void GetLinkColor(nsAString& aLinkColor);
|
|
|
|
void SetLinkColor(const nsAString& aLinkColor);
|
|
|
|
void GetVlinkColor(nsAString& aAvlinkColor);
|
|
|
|
void SetVlinkColor(const nsAString& aVlinkColor);
|
|
|
|
void GetAlinkColor(nsAString& aAlinkColor);
|
|
|
|
void SetAlinkColor(const nsAString& aAlinkColor);
|
|
|
|
void GetBgColor(nsAString& aBgColor);
|
|
|
|
void SetBgColor(const nsAString& aBgColor);
|
2012-12-26 06:00:47 +04:00
|
|
|
void Clear() const {
|
|
|
|
// Deprecated
|
|
|
|
}
|
2018-01-26 09:01:16 +03:00
|
|
|
void CaptureEvents();
|
|
|
|
void ReleaseEvents();
|
2012-12-26 06:00:47 +04:00
|
|
|
// We're picking up GetLocation from Document
|
2016-09-16 10:18:18 +03:00
|
|
|
already_AddRefed<mozilla::dom::Location> GetLocation() const {
|
2012-12-26 06:00:47 +04:00
|
|
|
return nsIDocument::GetLocation();
|
|
|
|
}
|
|
|
|
|
2017-08-27 06:28:15 +03:00
|
|
|
static bool MatchFormControls(Element* aElement, int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAtom, void* aData);
|
2017-08-27 06:28:15 +03:00
|
|
|
|
2017-09-14 21:56:58 +03:00
|
|
|
void GetFormsAndFormControls(nsContentList** aFormList,
|
|
|
|
nsContentList** aFormControlList);
|
2018-07-10 11:09:59 +03:00
|
|
|
|
|
|
|
void UserInteractionForTesting();
|
|
|
|
|
1998-08-28 19:55:31 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
~nsHTMLDocument();
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult GetBodySize(int32_t* aWidth, int32_t* aHeight);
|
2000-08-16 05:04:52 +04:00
|
|
|
|
2002-03-24 02:13:20 +03:00
|
|
|
nsIContent* MatchId(nsIContent* aContent, const nsAString& aId);
|
1998-08-08 03:08:00 +04:00
|
|
|
|
2002-04-19 10:05:03 +04:00
|
|
|
static void DocumentWriteTerminationFunc(nsISupports* aRef);
|
2002-04-19 03:25:35 +04:00
|
|
|
|
2013-03-17 12:51:39 +04:00
|
|
|
already_AddRefed<nsIURI> GetDomainURI();
|
2017-03-07 19:37:34 +03:00
|
|
|
already_AddRefed<nsIURI> CreateInheritingURIForHost(
|
|
|
|
const nsACString& aHostString);
|
|
|
|
already_AddRefed<nsIURI> RegistrableDomainSuffixOfInternal(
|
|
|
|
const nsAString& aHostSuffixString, nsIURI* aOrigHost);
|
|
|
|
|
2018-01-26 09:00:41 +03:00
|
|
|
void WriteCommon(JSContext* cx, const nsAString& aText,
|
|
|
|
bool aNewlineTerminate, mozilla::ErrorResult& aRv);
|
2012-12-26 06:00:47 +04:00
|
|
|
// A version of WriteCommon used by WebIDL bindings
|
|
|
|
void WriteCommon(JSContext* cx, const mozilla::dom::Sequence<nsString>& aText,
|
|
|
|
bool aNewlineTerminate, mozilla::ErrorResult& rv);
|
1999-01-06 03:32:41 +03:00
|
|
|
|
2002-01-31 22:36:45 +03:00
|
|
|
nsresult CreateAndAddWyciwygChannel(void);
|
|
|
|
nsresult RemoveWyciwygChannel(void);
|
2001-05-25 12:49:03 +04:00
|
|
|
|
2015-01-22 04:57:29 +03:00
|
|
|
// This should *ONLY* be used in GetCookie/SetCookie.
|
|
|
|
already_AddRefed<nsIChannel> CreateDummyChannelForCookies(
|
|
|
|
nsIURI* aCodebaseURI);
|
|
|
|
|
2008-10-29 23:12:24 +03:00
|
|
|
/**
|
|
|
|
* Like IsEditingOn(), but will flush as needed first.
|
|
|
|
*/
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsEditingOnAfterFlush();
|
2008-10-29 23:12:24 +03:00
|
|
|
|
2005-06-07 23:21:05 +04:00
|
|
|
void* GenerateParserKey(void);
|
|
|
|
|
2017-09-14 21:56:58 +03:00
|
|
|
// A helper class to keep nsContentList objects alive for a short period of
|
|
|
|
// time. Note, when the final Release is called on an nsContentList object, it
|
|
|
|
// removes itself from MutationObserver list.
|
|
|
|
class ContentListHolder : public mozilla::Runnable {
|
|
|
|
public:
|
|
|
|
ContentListHolder(nsHTMLDocument* aDocument, nsContentList* aFormList,
|
|
|
|
nsContentList* aFormControlList)
|
|
|
|
: mozilla::Runnable("ContentListHolder"),
|
|
|
|
mDocument(aDocument),
|
|
|
|
mFormList(aFormList),
|
|
|
|
mFormControlList(aFormControlList) {}
|
|
|
|
|
|
|
|
~ContentListHolder() {
|
|
|
|
MOZ_ASSERT(!mDocument->mContentListHolder ||
|
|
|
|
mDocument->mContentListHolder == this);
|
|
|
|
mDocument->mContentListHolder = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
RefPtr<nsHTMLDocument> mDocument;
|
|
|
|
RefPtr<nsContentList> mFormList;
|
|
|
|
RefPtr<nsContentList> mFormControlList;
|
|
|
|
};
|
|
|
|
|
|
|
|
friend class ContentListHolder;
|
|
|
|
ContentListHolder* mContentListHolder;
|
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::dom::HTMLAllCollection> mAll;
|
2013-06-12 10:55:00 +04:00
|
|
|
|
2002-07-17 02:38:51 +04:00
|
|
|
/** # of forms in the document, synchronously set */
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mNumForms;
|
2002-07-17 02:38:51 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static uint32_t gWyciwygSessionCnt;
|
2003-03-26 10:41:30 +03:00
|
|
|
|
2014-07-10 01:27:49 +04:00
|
|
|
static void TryHintCharset(nsIContentViewer* aContentViewer,
|
2013-01-18 18:27:03 +04:00
|
|
|
int32_t& aCharsetSource,
|
2017-06-18 14:37:50 +03:00
|
|
|
NotNull<const Encoding*>& aEncoding);
|
2014-07-10 01:27:49 +04:00
|
|
|
void TryUserForcedCharset(nsIContentViewer* aCv, nsIDocShell* aDocShell,
|
2013-01-18 18:27:03 +04:00
|
|
|
int32_t& aCharsetSource,
|
2017-06-18 14:37:50 +03:00
|
|
|
NotNull<const Encoding*>& aEncoding);
|
2013-01-18 18:27:03 +04:00
|
|
|
static void TryCacheCharset(nsICachingChannel* aCachingChannel,
|
2017-06-18 14:37:50 +03:00
|
|
|
int32_t& aCharsetSource,
|
|
|
|
NotNull<const Encoding*>& aEncoding);
|
2012-10-16 11:42:54 +04:00
|
|
|
void TryParentCharset(nsIDocShell* aDocShell, int32_t& charsetSource,
|
2017-06-18 14:37:50 +03:00
|
|
|
NotNull<const Encoding*>& aEncoding);
|
|
|
|
void TryTLD(int32_t& aCharsetSource, NotNull<const Encoding*>& aCharset);
|
2018-12-04 11:02:04 +03:00
|
|
|
static void TryFallback(int32_t& aCharsetSource,
|
|
|
|
NotNull<const Encoding*>& aEncoding);
|
2001-12-26 06:17:59 +03:00
|
|
|
|
2007-05-09 06:47:58 +04:00
|
|
|
// Override so we can munge the charset on our wyciwyg channel as needed.
|
2017-06-18 14:37:50 +03:00
|
|
|
virtual void SetDocumentCharacterSet(
|
|
|
|
NotNull<const Encoding*> aEncoding) override;
|
2007-05-09 06:47:58 +04:00
|
|
|
|
2006-01-24 04:25:14 +03:00
|
|
|
// Tracks if we are currently processing any document.write calls (either
|
|
|
|
// implicit or explicit). Note that if a write call writes out something which
|
|
|
|
// would block the parser, then mWriteLevel will be incorrect until the parser
|
|
|
|
// finishes processing that script.
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mWriteLevel;
|
2006-01-24 04:25:14 +03:00
|
|
|
|
2003-03-26 10:41:30 +03:00
|
|
|
// Load flags of the document's channel
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mLoadFlags;
|
2003-03-26 10:41:30 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mTooDeepWriteRecursion;
|
2007-02-11 03:30:20 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mDisableDocWrite;
|
2009-11-06 07:27:30 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mWarnedWidthHeight;
|
2010-08-27 15:44:28 +04:00
|
|
|
|
2002-01-31 22:36:45 +03:00
|
|
|
nsCOMPtr<nsIWyciwygChannel> mWyciwygChannel;
|
2002-11-07 18:36:25 +03:00
|
|
|
|
|
|
|
/* Midas implementation */
|
|
|
|
nsresult GetMidasCommandManager(nsICommandManager** aCommandManager);
|
2008-01-14 12:26:22 +03:00
|
|
|
|
2002-11-07 18:36:25 +03:00
|
|
|
nsCOMPtr<nsICommandManager> mMidasCommandManager;
|
2007-06-28 06:48:16 +04:00
|
|
|
|
|
|
|
nsresult TurnEditingOff();
|
|
|
|
nsresult EditingStateChanged();
|
2009-01-31 15:53:01 +03:00
|
|
|
void MaybeEditingStateChanged();
|
2007-06-28 06:48:16 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mContentEditableCount;
|
2007-06-28 06:48:16 +04:00
|
|
|
EditingState mEditingState;
|
2002-11-07 18:36:25 +03:00
|
|
|
|
2008-10-01 04:49:30 +04:00
|
|
|
// When false, the .cookies property is completely disabled
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mDisableCookieAccess;
|
2013-03-23 03:08:59 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Temporary flag that is set in EndUpdate() to ignore
|
|
|
|
* MaybeEditingStateChanged() script runners from a nested scope.
|
|
|
|
*/
|
|
|
|
bool mPendingMaybeEditingStateChanged;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
2018-04-21 19:42:31 +03:00
|
|
|
inline nsHTMLDocument* nsIDocument::AsHTMLDocument() {
|
|
|
|
MOZ_ASSERT(IsHTMLOrXHTML());
|
|
|
|
return static_cast<nsHTMLDocument*>(this);
|
|
|
|
}
|
|
|
|
|
2008-11-03 13:31:47 +03:00
|
|
|
#define NS_HTML_DOCUMENT_INTERFACE_TABLE_BEGIN(_class) \
|
|
|
|
NS_DOCUMENT_INTERFACE_TABLE_BEGIN(_class) \
|
2018-01-26 09:03:25 +03:00
|
|
|
NS_INTERFACE_TABLE_ENTRY(_class, nsIHTMLDocument)
|
2008-11-03 13:31:47 +03:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
#endif /* nsHTMLDocument_h___ */
|