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"
|
2018-12-26 05:35:30 +03:00
|
|
|
#include "nsContentList.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
1998-04-14 00:24:54 +04:00
|
|
|
#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"
|
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
|
|
|
|
2019-04-03 15:51:38 +03:00
|
|
|
class nsCommandManager;
|
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 nsILoadGroup;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2013-09-06 10:41:42 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class HTMLAllCollection;
|
2019-01-02 16:26:56 +03:00
|
|
|
template <typename T>
|
|
|
|
struct Nullable;
|
|
|
|
class WindowProxyHolder;
|
2013-09-06 10:41:42 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
class nsHTMLDocument : public mozilla::dom::Document, public nsIHTMLDocument {
|
|
|
|
protected:
|
2018-12-26 05:35:30 +03:00
|
|
|
typedef mozilla::net::ReferrerPolicy ReferrerPolicy;
|
2019-01-02 16:05:23 +03:00
|
|
|
typedef mozilla::dom::Document Document;
|
|
|
|
typedef mozilla::Encoding Encoding;
|
|
|
|
template <typename T>
|
|
|
|
using NotNull = mozilla::NotNull<T>;
|
2018-12-26 05:35:30 +03:00
|
|
|
|
1998-04-14 00:24:54 +04:00
|
|
|
public:
|
2019-01-02 16:05:23 +03:00
|
|
|
using Document::GetPlugins;
|
|
|
|
using Document::SetDocumentURI;
|
2011-03-26 19:06:27 +03:00
|
|
|
|
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
|
2019-01-02 16:05:23 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsHTMLDocument, Document)
|
1998-07-23 03:32:19 +04:00
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
// Document
|
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,
|
2019-04-12 08:31:32 +03:00
|
|
|
nsIPrincipal* aPrincipal,
|
|
|
|
nsIPrincipal* aStoragePrincipal) 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;
|
1998-04-14 00:24:54 +04:00
|
|
|
|
2019-02-24 19:32:08 +03:00
|
|
|
protected:
|
|
|
|
virtual bool UseWidthDeviceWidthFallbackViewport() const override;
|
|
|
|
|
|
|
|
public:
|
2013-06-12 10:55:00 +04:00
|
|
|
// nsIHTMLDocument
|
2019-03-04 09:11:41 +03:00
|
|
|
virtual Element* GetUnfocusedKeyEventTarget() override;
|
2017-07-13 23:53:26 +03:00
|
|
|
|
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;
|
2019-06-04 20:27:41 +03:00
|
|
|
void SetIsXHTML(bool aXHTML) { mType = (aXHTML ? eXHTML : eHTML); }
|
2003-04-19 04:28:09 +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
|
|
|
|
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;
|
2019-01-02 16:05:23 +03:00
|
|
|
// DocAddSizeOfIncludingThis is inherited from Document.
|
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;
|
2017-03-07 19:37:34 +03:00
|
|
|
bool IsRegistrableDomainSuffixOfOrEqualTo(const nsAString& aHostSuffixString,
|
|
|
|
const nsACString& aOrigHost);
|
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);
|
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 {
|
2019-01-02 16:05:23 +03:00
|
|
|
return Document::GetLocation();
|
2012-12-26 06:00:47 +04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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 mWarnedWidthHeight;
|
2010-08-27 15:44:28 +04:00
|
|
|
|
2019-02-23 19:06:52 +03:00
|
|
|
/**
|
|
|
|
* Set to true once we know that we are loading plain text content.
|
|
|
|
*/
|
|
|
|
bool mIsPlainText;
|
1998-04-14 00:24:54 +04:00
|
|
|
};
|
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
inline nsHTMLDocument* Document::AsHTMLDocument() {
|
2018-04-21 19:42:31 +03:00
|
|
|
MOZ_ASSERT(IsHTMLOrXHTML());
|
|
|
|
return static_cast<nsHTMLDocument*>(this);
|
|
|
|
}
|
|
|
|
|
2019-01-02 16:05:23 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
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___ */
|