2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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-03-10 08:37:31 +03:00
|
|
|
|
1999-08-18 08:25:24 +04:00
|
|
|
/*
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
The base XUL element class and associates.
|
1999-08-18 08:25:24 +04:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
1999-03-10 08:37:31 +03:00
|
|
|
#ifndef nsXULElement_h__
|
|
|
|
#define nsXULElement_h__
|
|
|
|
|
2014-04-12 02:19:05 +04:00
|
|
|
#include "js/TracingAPI.h"
|
2013-05-30 00:43:41 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2001-08-24 00:07:10 +04:00
|
|
|
#include "nsIServiceManager.h"
|
2017-10-03 01:05:19 +03:00
|
|
|
#include "nsAtom.h"
|
2014-06-20 06:01:40 +04:00
|
|
|
#include "mozilla/dom/NodeInfo.h"
|
1999-10-19 03:05:35 +04:00
|
|
|
#include "nsIControllers.h"
|
2002-01-12 04:20:29 +03:00
|
|
|
#include "nsIDOMXULMultSelectCntrlEl.h"
|
1999-10-29 05:21:15 +04:00
|
|
|
#include "nsIURI.h"
|
2002-05-03 07:04:34 +04:00
|
|
|
#include "nsLayoutCID.h"
|
2004-02-10 12:08:06 +03:00
|
|
|
#include "nsAttrAndChildArray.h"
|
2006-12-26 20:47:52 +03:00
|
|
|
#include "nsGkAtoms.h"
|
2017-08-17 02:48:52 +03:00
|
|
|
#include "nsStringFwd.h"
|
2010-02-24 07:37:46 +03:00
|
|
|
#include "nsStyledElement.h"
|
2013-09-20 14:21:03 +04:00
|
|
|
#include "mozilla/dom/DOMRect.h"
|
2016-12-13 10:11:04 +03:00
|
|
|
#include "mozilla/dom/Element.h"
|
2017-02-02 18:32:58 +03:00
|
|
|
#include "mozilla/dom/DOMString.h"
|
2017-10-11 01:25:10 +03:00
|
|
|
#include "mozilla/dom/FromParser.h"
|
2001-10-18 07:47:32 +04:00
|
|
|
|
1999-10-19 03:05:35 +04:00
|
|
|
class nsIDocument;
|
2013-08-20 03:24:27 +04:00
|
|
|
class nsXULPrototypeDocument;
|
1999-10-20 22:55:32 +04:00
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
class nsIObjectInputStream;
|
|
|
|
class nsIObjectOutputStream;
|
2014-03-17 10:56:53 +04:00
|
|
|
class nsIOffThreadScriptReceiver;
|
2008-10-08 15:41:52 +04:00
|
|
|
class nsXULPrototypeNode;
|
2015-10-18 08:24:48 +03:00
|
|
|
typedef nsTArray<RefPtr<nsXULPrototypeNode> > nsPrototypeArray;
|
2001-07-31 23:05:34 +04:00
|
|
|
|
2011-03-11 05:48:57 +03:00
|
|
|
namespace mozilla {
|
2014-03-18 08:48:19 +04:00
|
|
|
class EventChainPreVisitor;
|
2014-03-17 10:56:53 +04:00
|
|
|
class EventListenerManager;
|
2011-03-11 05:48:57 +03:00
|
|
|
namespace css {
|
|
|
|
class StyleRule;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace css
|
2014-10-15 00:15:21 +04:00
|
|
|
namespace dom {
|
|
|
|
class BoxObject;
|
2016-01-09 03:11:58 +03:00
|
|
|
class HTMLIFrameElement;
|
2017-02-02 18:32:58 +03:00
|
|
|
enum class CallerType : uint32_t;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2011-03-11 05:48:57 +03:00
|
|
|
|
2014-04-25 18:11:57 +04:00
|
|
|
namespace JS {
|
|
|
|
class SourceBufferHolder;
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace JS
|
2014-04-25 18:11:57 +04:00
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-12-07 05:06:10 +03:00
|
|
|
#ifdef XUL_PROTOTYPE_ATTRIBUTE_METERING
|
|
|
|
#define XUL_PROTOTYPE_ATTRIBUTE_METER(counter) (nsXULPrototypeAttribute::counter++)
|
|
|
|
#else
|
|
|
|
#define XUL_PROTOTYPE_ATTRIBUTE_METER(counter) ((void) 0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
/**
|
|
|
|
|
|
|
|
A prototype attribute for an nsXULPrototypeElement.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1999-10-29 05:21:15 +04:00
|
|
|
class nsXULPrototypeAttribute
|
1999-10-20 22:55:32 +04:00
|
|
|
{
|
1999-10-29 05:21:15 +04:00
|
|
|
public:
|
1999-12-03 06:40:30 +03:00
|
|
|
nsXULPrototypeAttribute()
|
2012-07-19 13:18:01 +04:00
|
|
|
: mName(nsGkAtoms::id) // XXX this is a hack, but names have to have a value
|
1999-12-03 06:40:30 +03:00
|
|
|
{
|
1999-12-07 05:06:10 +03:00
|
|
|
XUL_PROTOTYPE_ATTRIBUTE_METER(gNumAttributes);
|
2003-10-30 04:40:33 +03:00
|
|
|
MOZ_COUNT_CTOR(nsXULPrototypeAttribute);
|
1999-12-03 06:40:30 +03:00
|
|
|
}
|
1999-10-29 05:21:15 +04:00
|
|
|
|
1999-12-06 11:23:47 +03:00
|
|
|
~nsXULPrototypeAttribute();
|
|
|
|
|
2004-02-10 12:08:06 +03:00
|
|
|
nsAttrName mName;
|
|
|
|
nsAttrValue mValue;
|
1999-12-03 06:40:30 +03:00
|
|
|
|
|
|
|
#ifdef XUL_PROTOTYPE_ATTRIBUTE_METERING
|
2012-08-22 19:56:38 +04:00
|
|
|
static uint32_t gNumElements;
|
|
|
|
static uint32_t gNumAttributes;
|
|
|
|
static uint32_t gNumCacheTests;
|
|
|
|
static uint32_t gNumCacheHits;
|
|
|
|
static uint32_t gNumCacheSets;
|
|
|
|
static uint32_t gNumCacheFills;
|
1999-12-07 05:06:10 +03:00
|
|
|
#endif /* !XUL_PROTOTYPE_ATTRIBUTE_METERING */
|
1999-10-20 22:55:32 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
A prototype content model element that holds the "primordial" values
|
2012-07-19 13:18:01 +04:00
|
|
|
that have been parsed from the original XUL document.
|
1999-10-20 22:55:32 +04:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-08-24 20:50:06 +04:00
|
|
|
class nsXULPrototypeNode
|
1999-10-20 22:55:32 +04:00
|
|
|
{
|
1999-10-29 05:21:15 +04:00
|
|
|
public:
|
2006-11-12 01:27:00 +03:00
|
|
|
enum Type { eType_Element, eType_Script, eType_Text, eType_PI };
|
1999-10-29 05:21:15 +04:00
|
|
|
|
|
|
|
Type mType;
|
2001-11-03 13:12:20 +03:00
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) = 0;
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2002-07-24 02:16:45 +04:00
|
|
|
nsIURI* aDocumentURI,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) = 0;
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2007-07-06 02:40:26 +04:00
|
|
|
/**
|
|
|
|
* The prototype document must call ReleaseSubtree when it is going
|
|
|
|
* away. This makes the parents through the tree stop owning their
|
|
|
|
* children, whether or not the parent's reference count is zero.
|
|
|
|
* Individual elements may still own individual prototypes, but
|
|
|
|
* those prototypes no longer remember their children to allow them
|
|
|
|
* to be constructed.
|
|
|
|
*/
|
2008-10-08 15:41:52 +04:00
|
|
|
virtual void ReleaseSubtree() { }
|
2001-11-05 09:45:04 +03:00
|
|
|
|
2012-08-24 20:50:06 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(nsXULPrototypeNode)
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsXULPrototypeNode)
|
2007-05-24 18:10:02 +04:00
|
|
|
|
1999-10-29 05:21:15 +04:00
|
|
|
protected:
|
2014-09-02 04:49:25 +04:00
|
|
|
explicit nsXULPrototypeNode(Type aType)
|
2008-10-08 15:41:52 +04:00
|
|
|
: mType(aType) {}
|
2014-06-25 06:09:15 +04:00
|
|
|
virtual ~nsXULPrototypeNode() {}
|
1999-10-29 05:21:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXULPrototypeElement : public nsXULPrototypeNode
|
|
|
|
{
|
|
|
|
public:
|
2002-09-25 13:56:09 +04:00
|
|
|
nsXULPrototypeElement()
|
|
|
|
: nsXULPrototypeNode(eType_Element),
|
1999-10-29 05:21:15 +04:00
|
|
|
mNumAttributes(0),
|
2011-10-17 18:59:28 +04:00
|
|
|
mHasIdAttribute(false),
|
|
|
|
mHasClassAttribute(false),
|
|
|
|
mHasStyleAttribute(false),
|
2018-05-11 22:44:46 +03:00
|
|
|
mAttributes(nullptr),
|
|
|
|
mIsAtom(nullptr)
|
1999-10-29 05:21:15 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~nsXULPrototypeElement()
|
|
|
|
{
|
2007-10-29 16:45:07 +03:00
|
|
|
Unlink();
|
2001-11-05 09:45:04 +03:00
|
|
|
}
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ReleaseSubtree() override
|
2001-11-05 09:45:04 +03:00
|
|
|
{
|
2012-08-22 19:56:38 +04:00
|
|
|
for (int32_t i = mChildren.Length() - 1; i >= 0; i--) {
|
2008-10-08 15:41:52 +04:00
|
|
|
if (mChildren[i].get())
|
|
|
|
mChildren[i]->ReleaseSubtree();
|
2002-06-09 14:31:00 +04:00
|
|
|
}
|
2008-10-08 15:41:52 +04:00
|
|
|
mChildren.Clear();
|
|
|
|
nsXULPrototypeNode::ReleaseSubtree();
|
1999-10-29 05:21:15 +04:00
|
|
|
}
|
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2002-07-24 02:16:45 +04:00
|
|
|
nsIURI* aDocumentURI,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
nsresult SetAttrAt(uint32_t aPos, const nsAString& aValue, nsIURI* aDocumentURI);
|
2004-02-10 12:08:06 +03:00
|
|
|
|
2007-10-29 16:45:07 +03:00
|
|
|
void Unlink();
|
|
|
|
|
2012-08-25 00:22:23 +04:00
|
|
|
// Trace all scripts held by this element and its children.
|
|
|
|
void TraceAllScripts(JSTracer* aTrc);
|
|
|
|
|
2008-10-08 15:41:52 +04:00
|
|
|
nsPrototypeArray mChildren;
|
1999-10-20 22:55:32 +04:00
|
|
|
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<mozilla::dom::NodeInfo> mNodeInfo;
|
1999-10-20 22:55:32 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mNumAttributes:29;
|
|
|
|
uint32_t mHasIdAttribute:1;
|
|
|
|
uint32_t mHasClassAttribute:1;
|
|
|
|
uint32_t mHasStyleAttribute:1;
|
1999-10-20 22:55:32 +04:00
|
|
|
nsXULPrototypeAttribute* mAttributes; // [OWNER]
|
2018-05-11 22:44:46 +03:00
|
|
|
RefPtr<nsAtom> mIsAtom;
|
1999-10-29 05:21:15 +04:00
|
|
|
};
|
|
|
|
|
2013-03-26 19:31:53 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class XULDocument;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
1999-11-18 05:25:33 +03:00
|
|
|
|
1999-10-29 05:21:15 +04:00
|
|
|
class nsXULPrototypeScript : public nsXULPrototypeNode
|
|
|
|
{
|
|
|
|
public:
|
2017-11-19 01:16:14 +03:00
|
|
|
explicit nsXULPrototypeScript(uint32_t aLineNo);
|
1999-11-18 05:25:33 +03:00
|
|
|
virtual ~nsXULPrototypeScript();
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
Reduce seeks outside the FastLoad file's underlying stream buffer (195010,
r=ben, sr=bryner).
- Pass null scope objects into nsIScriptContext::Compile{EventHandler,Script}
when precompiling for brutal sharing. The JS engine does not need a non-null
object parameter for static scope. That parameter can be non-null only if it
helps the compiler "pre-bind" functions to the same scope object that they'll
be parented by when executing, but with brutal sharing, functions are
precompiled once and executed against many different scope objects.
- A problem in XUL FastLoad was that it would serialize master .xul document
out-of-line scripts (those included via script src= from non-overlay, "master"
.xul docs) far from the place in the FastLoad file where XUL prototype script
info was serialized for the <script src=> tag itself. I fixed that so that,
unless the out-of-line script was previously serialized (by a different src=
reference from another .xul file), the OOL script data immediately follows the
proto-script info in the FastLoad file.
This required adding a SerializeOutOfLine method to nsXULPrototypeScript, which
restores symmetry by matching the existing DeserializeOutOfLine(Script) (note:
I dropped the redundant "Script" from the end of the latter method's name. We
need SerializeOutOfLine to handle overlay OOL scripts. They are serialized by
nsXULDocument::OnStreamComplete, because that code knows the difference between
an overlay and a master doc. This removes all trace of FastLoad writing from
nsXULPrototypeScript::Compile -- FastLoad stuff didn't belong there, not only
because we now want to write master OOL scripts later, when walking the master
XUL prototype doc's element tree, but also for modularity reasons. The caller
knows about FastLoad, nsXULPrototypeScript::Compile does just what its name
implies.
There are 132 seeks with the patch, only 49 of which dump the underlying file
stream's buffer, vs. 133 seeks without the patch, 87 of which dump the buffer.
- Nit-picked some comments to fit in 80 columns, and made other cosmetic fixes.
- Implicated the nsXULDocument::mIsWritingFastLoad flag from the useXULCache
"is the XUL cache enabled?" flag, so other places that test mIsWritingFastLoad
don't have to query whether the cache is enabled.
- Added METERING synchronous meter-dumping to /tmp/bufstats, only ifdef
DEBUG_brendan, in netwerk/base/src/nsBufferedStreams.cpp.
- Added the deferred seek optimization from the first patch in bug 195010 to
nsFastLoadFile.cpp.
- Fixed nsFastLoadFileReader so it overrides readSegments as well as read.
This catches up with the interface extension made to nsIInputStream to add
readSegments. The nsFastLoadFileReader extends nsBinaryInputStream, which is
a concrete class, and overrides Read in order to snoop on *all* bytes read.
It does this in order to demultiplex documents interleaved when the FastLoad
file was written.
But since the readSegments move into nsIInputStream.idl, certain primitives
in nsBinaryStream.cpp, e.g., nsBinaryInputStream::ReadCString, have used
ReadSegments, not Read, to consume parts of the underlying stream (to read
the C string's chars, in that example), and the FastLoad file implementation
has not accounted for those bytes.
- Added a new method to nsIFastLoadFileControl and its impls: hasMuxedDocument.
This is needed when serializing master XUL doc OOL scripts, because we must
not serialize twice, and any OOL script that other XUL docs can include via
script src= could already be in the FastLoad mux.
/be
2003-04-12 05:34:11 +04:00
|
|
|
nsresult SerializeOutOfLine(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc);
|
2001-07-31 23:05:34 +04:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2002-07-24 02:16:45 +04:00
|
|
|
nsIURI* aDocumentURI,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
Reduce seeks outside the FastLoad file's underlying stream buffer (195010,
r=ben, sr=bryner).
- Pass null scope objects into nsIScriptContext::Compile{EventHandler,Script}
when precompiling for brutal sharing. The JS engine does not need a non-null
object parameter for static scope. That parameter can be non-null only if it
helps the compiler "pre-bind" functions to the same scope object that they'll
be parented by when executing, but with brutal sharing, functions are
precompiled once and executed against many different scope objects.
- A problem in XUL FastLoad was that it would serialize master .xul document
out-of-line scripts (those included via script src= from non-overlay, "master"
.xul docs) far from the place in the FastLoad file where XUL prototype script
info was serialized for the <script src=> tag itself. I fixed that so that,
unless the out-of-line script was previously serialized (by a different src=
reference from another .xul file), the OOL script data immediately follows the
proto-script info in the FastLoad file.
This required adding a SerializeOutOfLine method to nsXULPrototypeScript, which
restores symmetry by matching the existing DeserializeOutOfLine(Script) (note:
I dropped the redundant "Script" from the end of the latter method's name. We
need SerializeOutOfLine to handle overlay OOL scripts. They are serialized by
nsXULDocument::OnStreamComplete, because that code knows the difference between
an overlay and a master doc. This removes all trace of FastLoad writing from
nsXULPrototypeScript::Compile -- FastLoad stuff didn't belong there, not only
because we now want to write master OOL scripts later, when walking the master
XUL prototype doc's element tree, but also for modularity reasons. The caller
knows about FastLoad, nsXULPrototypeScript::Compile does just what its name
implies.
There are 132 seeks with the patch, only 49 of which dump the underlying file
stream's buffer, vs. 133 seeks without the patch, 87 of which dump the buffer.
- Nit-picked some comments to fit in 80 columns, and made other cosmetic fixes.
- Implicated the nsXULDocument::mIsWritingFastLoad flag from the useXULCache
"is the XUL cache enabled?" flag, so other places that test mIsWritingFastLoad
don't have to query whether the cache is enabled.
- Added METERING synchronous meter-dumping to /tmp/bufstats, only ifdef
DEBUG_brendan, in netwerk/base/src/nsBufferedStreams.cpp.
- Added the deferred seek optimization from the first patch in bug 195010 to
nsFastLoadFile.cpp.
- Fixed nsFastLoadFileReader so it overrides readSegments as well as read.
This catches up with the interface extension made to nsIInputStream to add
readSegments. The nsFastLoadFileReader extends nsBinaryInputStream, which is
a concrete class, and overrides Read in order to snoop on *all* bytes read.
It does this in order to demultiplex documents interleaved when the FastLoad
file was written.
But since the readSegments move into nsIInputStream.idl, certain primitives
in nsBinaryStream.cpp, e.g., nsBinaryInputStream::ReadCString, have used
ReadSegments, not Read, to consume parts of the underlying stream (to read
the C string's chars, in that example), and the FastLoad file implementation
has not accounted for those bytes.
- Added a new method to nsIFastLoadFileControl and its impls: hasMuxedDocument.
This is needed when serializing master XUL doc OOL scripts, because we must
not serialize twice, and any OOL script that other XUL docs can include via
script src= could already be in the FastLoad mux.
/be
2003-04-12 05:34:11 +04:00
|
|
|
nsresult DeserializeOutOfLine(nsIObjectInputStream* aInput,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc);
|
2001-07-31 23:05:34 +04:00
|
|
|
|
2014-04-25 18:11:57 +04:00
|
|
|
nsresult Compile(JS::SourceBufferHolder& aSrcBuf,
|
|
|
|
nsIURI* aURI, uint32_t aLineNo,
|
|
|
|
nsIDocument* aDocument,
|
|
|
|
nsIOffThreadScriptReceiver *aOffThreadReceiver = nullptr);
|
|
|
|
|
2014-01-04 19:02:17 +04:00
|
|
|
nsresult Compile(const char16_t* aText, int32_t aTextLength,
|
2012-08-22 19:56:38 +04:00
|
|
|
nsIURI* aURI, uint32_t aLineNo,
|
1999-12-17 03:06:28 +03:00
|
|
|
nsIDocument* aDocument,
|
2013-08-16 01:14:43 +04:00
|
|
|
nsIOffThreadScriptReceiver *aOffThreadReceiver = nullptr);
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2011-08-11 17:29:50 +04:00
|
|
|
void UnlinkJSObjects();
|
2007-10-29 16:45:07 +03:00
|
|
|
|
2011-10-30 00:13:31 +04:00
|
|
|
void Set(JSScript* aObject);
|
2007-10-29 16:45:07 +03:00
|
|
|
|
2016-10-14 11:45:28 +03:00
|
|
|
bool HasScriptObject()
|
2007-10-29 16:45:07 +03:00
|
|
|
{
|
2016-10-14 11:45:28 +03:00
|
|
|
// Conversion to bool doesn't trigger mScriptObject's read barrier.
|
|
|
|
return mScriptObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
JSScript* GetScriptObject()
|
|
|
|
{
|
|
|
|
return mScriptObject;
|
2012-08-25 00:22:23 +04:00
|
|
|
}
|
2012-04-25 02:31:28 +04:00
|
|
|
|
2013-03-29 00:37:22 +04:00
|
|
|
void TraceScriptObject(JSTracer* aTrc)
|
|
|
|
{
|
2016-01-13 00:07:54 +03:00
|
|
|
JS::TraceEdge(aTrc, &mScriptObject, "active window XUL prototype script");
|
2013-03-29 00:37:22 +04:00
|
|
|
}
|
|
|
|
|
2013-05-27 15:50:49 +04:00
|
|
|
void Trace(const TraceCallbacks& aCallbacks, void* aClosure)
|
|
|
|
{
|
|
|
|
if (mScriptObject) {
|
|
|
|
aCallbacks.Trace(&mScriptObject, "mScriptObject", aClosure);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-10-29 05:21:15 +04:00
|
|
|
nsCOMPtr<nsIURI> mSrcURI;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mLineNo;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mSrcLoading;
|
|
|
|
bool mOutOfLine;
|
2013-03-26 19:31:53 +04:00
|
|
|
mozilla::dom::XULDocument* mSrcLoadWaiters; // [OWNER] but not COMPtr
|
2012-08-25 00:22:23 +04:00
|
|
|
private:
|
2013-06-18 14:00:37 +04:00
|
|
|
JS::Heap<JSScript*> mScriptObject;
|
1999-10-29 05:21:15 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsXULPrototypeText : public nsXULPrototypeNode
|
|
|
|
{
|
|
|
|
public:
|
2002-09-25 13:56:09 +04:00
|
|
|
nsXULPrototypeText()
|
|
|
|
: nsXULPrototypeNode(eType_Text)
|
1999-10-29 05:21:15 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~nsXULPrototypeText()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2002-05-03 07:04:34 +04:00
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
2002-05-03 07:04:34 +04:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2002-07-24 02:16:45 +04:00
|
|
|
nsIURI* aDocumentURI,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
2002-05-03 07:04:34 +04:00
|
|
|
|
1999-10-29 05:21:15 +04:00
|
|
|
nsString mValue;
|
1999-10-20 22:55:32 +04:00
|
|
|
};
|
|
|
|
|
2006-11-12 01:27:00 +03:00
|
|
|
class nsXULPrototypePI : public nsXULPrototypeNode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsXULPrototypePI()
|
|
|
|
: nsXULPrototypeNode(eType_PI)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~nsXULPrototypePI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual nsresult Serialize(nsIObjectOutputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
2006-11-12 01:27:00 +03:00
|
|
|
virtual nsresult Deserialize(nsIObjectInputStream* aStream,
|
2013-08-20 03:24:27 +04:00
|
|
|
nsXULPrototypeDocument* aProtoDoc,
|
2006-11-12 01:27:00 +03:00
|
|
|
nsIURI* aDocumentURI,
|
2015-10-18 08:24:48 +03:00
|
|
|
const nsTArray<RefPtr<mozilla::dom::NodeInfo>> *aNodeInfos) override;
|
2006-11-12 01:27:00 +03:00
|
|
|
|
|
|
|
nsString mTarget;
|
|
|
|
nsString mData;
|
|
|
|
};
|
|
|
|
|
1999-10-19 03:05:35 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
/**
|
|
|
|
|
|
|
|
The XUL element.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-10-02 04:52:06 +04:00
|
|
|
#define XUL_ELEMENT_FLAG_BIT(n_) NODE_FLAG_BIT(ELEMENT_TYPE_SPECIFIC_BITS_OFFSET + (n_))
|
|
|
|
|
|
|
|
// XUL element specific bits
|
|
|
|
enum {
|
2017-12-19 17:11:06 +03:00
|
|
|
XUL_ELEMENT_HAS_CONTENTMENU_LISTENER = XUL_ELEMENT_FLAG_BIT(0),
|
|
|
|
XUL_ELEMENT_HAS_POPUP_LISTENER = XUL_ELEMENT_FLAG_BIT(1)
|
2012-10-02 04:52:06 +04:00
|
|
|
};
|
2010-06-18 20:23:04 +04:00
|
|
|
|
2017-12-19 17:11:06 +03:00
|
|
|
ASSERT_NODE_FLAGS_SPACE(ELEMENT_TYPE_SPECIFIC_BITS_OFFSET + 2);
|
2005-01-19 23:05:02 +03:00
|
|
|
|
2012-10-02 04:52:06 +04:00
|
|
|
#undef XUL_ELEMENT_FLAG_BIT
|
|
|
|
|
2018-05-30 05:58:51 +03:00
|
|
|
class nsXULElement : public nsStyledElement
|
1999-10-19 03:05:35 +04:00
|
|
|
{
|
2018-04-27 18:04:37 +03:00
|
|
|
protected:
|
|
|
|
// Use Construct to construct elements instead of this constructor.
|
|
|
|
explicit nsXULElement(already_AddRefed<mozilla::dom::NodeInfo>& aNodeInfo);
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
public:
|
2016-05-24 07:22:17 +03:00
|
|
|
using Element::Blur;
|
|
|
|
using Element::Focus;
|
2010-07-23 13:49:57 +04:00
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
static nsresult
|
2018-04-27 18:04:37 +03:00
|
|
|
CreateFromPrototype(nsXULPrototypeElement* aPrototype,
|
|
|
|
nsIDocument* aDocument,
|
|
|
|
bool aIsScriptable,
|
|
|
|
bool aIsRoot,
|
|
|
|
mozilla::dom::Element** aResult);
|
|
|
|
|
|
|
|
// This is the constructor for nsXULElements.
|
|
|
|
static nsXULElement* Construct(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
1999-10-20 22:55:32 +04:00
|
|
|
|
2018-03-22 00:39:04 +03:00
|
|
|
NS_IMPL_FROMNODE(nsXULElement, kNameSpaceID_XUL)
|
2012-09-26 18:17:51 +04:00
|
|
|
|
1999-10-19 03:05:35 +04:00
|
|
|
// nsISupports
|
2005-01-14 22:30:55 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2014-05-30 11:36:53 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsXULElement, nsStyledElement)
|
Reduce seeks outside the FastLoad file's underlying stream buffer (195010,
r=ben, sr=bryner).
- Pass null scope objects into nsIScriptContext::Compile{EventHandler,Script}
when precompiling for brutal sharing. The JS engine does not need a non-null
object parameter for static scope. That parameter can be non-null only if it
helps the compiler "pre-bind" functions to the same scope object that they'll
be parented by when executing, but with brutal sharing, functions are
precompiled once and executed against many different scope objects.
- A problem in XUL FastLoad was that it would serialize master .xul document
out-of-line scripts (those included via script src= from non-overlay, "master"
.xul docs) far from the place in the FastLoad file where XUL prototype script
info was serialized for the <script src=> tag itself. I fixed that so that,
unless the out-of-line script was previously serialized (by a different src=
reference from another .xul file), the OOL script data immediately follows the
proto-script info in the FastLoad file.
This required adding a SerializeOutOfLine method to nsXULPrototypeScript, which
restores symmetry by matching the existing DeserializeOutOfLine(Script) (note:
I dropped the redundant "Script" from the end of the latter method's name. We
need SerializeOutOfLine to handle overlay OOL scripts. They are serialized by
nsXULDocument::OnStreamComplete, because that code knows the difference between
an overlay and a master doc. This removes all trace of FastLoad writing from
nsXULPrototypeScript::Compile -- FastLoad stuff didn't belong there, not only
because we now want to write master OOL scripts later, when walking the master
XUL prototype doc's element tree, but also for modularity reasons. The caller
knows about FastLoad, nsXULPrototypeScript::Compile does just what its name
implies.
There are 132 seeks with the patch, only 49 of which dump the underlying file
stream's buffer, vs. 133 seeks without the patch, 87 of which dump the buffer.
- Nit-picked some comments to fit in 80 columns, and made other cosmetic fixes.
- Implicated the nsXULDocument::mIsWritingFastLoad flag from the useXULCache
"is the XUL cache enabled?" flag, so other places that test mIsWritingFastLoad
don't have to query whether the cache is enabled.
- Added METERING synchronous meter-dumping to /tmp/bufstats, only ifdef
DEBUG_brendan, in netwerk/base/src/nsBufferedStreams.cpp.
- Added the deferred seek optimization from the first patch in bug 195010 to
nsFastLoadFile.cpp.
- Fixed nsFastLoadFileReader so it overrides readSegments as well as read.
This catches up with the interface extension made to nsIInputStream to add
readSegments. The nsFastLoadFileReader extends nsBinaryInputStream, which is
a concrete class, and overrides Read in order to snoop on *all* bytes read.
It does this in order to demultiplex documents interleaved when the FastLoad
file was written.
But since the readSegments move into nsIInputStream.idl, certain primitives
in nsBinaryStream.cpp, e.g., nsBinaryInputStream::ReadCString, have used
ReadSegments, not Read, to consume parts of the underlying stream (to read
the C string's chars, in that example), and the FastLoad file implementation
has not accounted for those bytes.
- Added a new method to nsIFastLoadFileControl and its impls: hasMuxedDocument.
This is needed when serializing master XUL doc OOL scripts, because we must
not serialize twice, and any OOL script that other XUL docs can include via
script src= could already be in the FastLoad mux.
/be
2003-04-12 05:34:11 +04:00
|
|
|
|
2006-01-19 06:34:18 +03:00
|
|
|
// nsINode
|
2018-04-05 20:42:41 +03:00
|
|
|
void GetEventTargetParent(mozilla::EventChainPreVisitor& aVisitor) override;
|
2016-10-21 12:58:34 +03:00
|
|
|
virtual nsresult PreHandleEvent(
|
|
|
|
mozilla::EventChainVisitor& aVisitor) override;
|
2005-01-14 22:30:55 +03:00
|
|
|
// nsIContent
|
2018-07-31 21:18:38 +03:00
|
|
|
virtual nsresult BindToTree(nsIDocument* aDocument,
|
|
|
|
nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void UnbindFromTree(bool aDeep, bool aNullParent) override;
|
|
|
|
virtual void DestroyContent() override;
|
2006-06-13 07:07:47 +04:00
|
|
|
|
2001-10-16 09:31:36 +04:00
|
|
|
#ifdef DEBUG
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void List(FILE* out, int32_t aIndent) const override;
|
|
|
|
virtual void DumpContent(FILE* out, int32_t aIndent,bool aDumpAll) const override
|
2004-01-10 02:54:21 +03:00
|
|
|
{
|
|
|
|
}
|
2001-10-16 09:31:36 +04:00
|
|
|
#endif
|
1999-10-19 03:05:35 +04:00
|
|
|
|
2015-09-18 15:18:42 +03:00
|
|
|
virtual bool PerformAccesskey(bool aKeyCausesActivation,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aIsTrustedEvent) override;
|
2017-02-02 18:32:58 +03:00
|
|
|
void ClickWithInputSource(uint16_t aInputSource, bool aIsTrustedEvent);
|
2004-01-10 02:54:21 +03:00
|
|
|
|
2018-02-06 09:46:57 +03:00
|
|
|
nsIContent* GetBindingParent() const final
|
2017-12-23 11:23:42 +03:00
|
|
|
{
|
|
|
|
return mBindingParent;
|
|
|
|
}
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual bool IsNodeOfType(uint32_t aFlags) const override;
|
|
|
|
virtual bool IsFocusableInternal(int32_t* aTabIndex, bool aWithMouse) override;
|
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 20:46:42 +04:00
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsChangeHint GetAttributeChangeHint(const nsAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) const override;
|
2017-10-03 01:05:19 +03:00
|
|
|
NS_IMETHOD_(bool) IsAttributeMapped(const nsAtom* aAttribute) const override;
|
1999-10-19 03:05:35 +04:00
|
|
|
|
2017-04-20 22:57:48 +03:00
|
|
|
virtual nsresult Clone(mozilla::dom::NodeInfo *aNodeInfo, nsINode **aResult,
|
|
|
|
bool aPreallocateChildren) const override;
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual mozilla::EventStates IntrinsicState() const override;
|
1999-11-23 12:36:39 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void RecompileScriptEventListeners() override;
|
2006-10-07 14:27:45 +04:00
|
|
|
|
2007-05-16 05:13:47 +04:00
|
|
|
// This function should ONLY be used by BindToTree implementations.
|
2007-05-22 02:22:51 +04:00
|
|
|
// The function exists solely because XUL elements store the binding
|
2012-11-15 02:10:08 +04:00
|
|
|
// parent as a member instead of in the slots, as Element does.
|
2007-05-16 05:13:47 +04:00
|
|
|
void SetXULBindingParent(nsIContent* aBindingParent)
|
|
|
|
{
|
|
|
|
mBindingParent = aBindingParent;
|
|
|
|
}
|
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual bool IsEventAttributeNameInternal(nsAtom* aName) override;
|
2013-01-03 00:24:07 +04:00
|
|
|
|
2017-02-02 18:32:58 +03:00
|
|
|
typedef mozilla::dom::DOMString DOMString;
|
2017-10-03 01:05:19 +03:00
|
|
|
void GetXULAttr(nsAtom* aName, DOMString& aResult) const
|
2017-02-02 18:32:58 +03:00
|
|
|
{
|
|
|
|
GetAttr(kNameSpaceID_None, aName, aResult);
|
|
|
|
}
|
2017-10-03 01:05:19 +03:00
|
|
|
void SetXULAttr(nsAtom* aName, const nsAString& aValue,
|
2013-01-29 21:51:55 +04:00
|
|
|
mozilla::ErrorResult& aError)
|
|
|
|
{
|
2017-02-02 18:32:58 +03:00
|
|
|
SetAttr(aName, aValue, aError);
|
2013-01-29 21:51:55 +04:00
|
|
|
}
|
2017-10-03 01:05:19 +03:00
|
|
|
void SetXULBoolAttr(nsAtom* aName, bool aValue)
|
2013-01-29 21:51:55 +04:00
|
|
|
{
|
|
|
|
if (aValue) {
|
|
|
|
SetAttr(kNameSpaceID_None, aName, NS_LITERAL_STRING("true"), true);
|
|
|
|
} else {
|
|
|
|
UnsetAttr(kNameSpaceID_None, aName, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WebIDL API
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetAlign(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::align, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetAlign(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::align, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetDir(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::dir, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetDir(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::dir, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetFlex(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::flex, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetFlex(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::flex, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetOrdinal(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::ordinal, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetOrdinal(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::ordinal, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetOrient(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::orient, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetOrient(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::orient, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetPack(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::pack, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetPack(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::pack, aValue, rv);
|
|
|
|
}
|
|
|
|
bool Hidden() const
|
|
|
|
{
|
|
|
|
return BoolAttrIsTrue(nsGkAtoms::hidden);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void SetHidden(bool aHidden)
|
|
|
|
{
|
|
|
|
SetXULBoolAttr(nsGkAtoms::hidden, aHidden);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
bool Collapsed() const
|
|
|
|
{
|
|
|
|
return BoolAttrIsTrue(nsGkAtoms::collapsed);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void SetCollapsed(bool aCollapsed)
|
|
|
|
{
|
|
|
|
SetXULBoolAttr(nsGkAtoms::collapsed, aCollapsed);
|
|
|
|
}
|
|
|
|
void GetObserves(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::observes, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetObserves(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::observes, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetMenu(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::menu, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetMenu(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::menu, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetContextMenu(DOMString& aValue)
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::contextmenu, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetContextMenu(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::contextmenu, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetTooltip(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::tooltip, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetTooltip(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::tooltip, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetWidth(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::width, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetWidth(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::width, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetHeight(DOMString& aValue)
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::height, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetHeight(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::height, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetMinWidth(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::minwidth, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetMinWidth(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::minwidth, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetMinHeight(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::minheight, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetMinHeight(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::minheight, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetMaxWidth(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::maxwidth, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetMaxWidth(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::maxwidth, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetMaxHeight(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::maxheight, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetMaxHeight(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::maxheight, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetLeft(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::left, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetLeft(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::left, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetTop(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::top, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetTop(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::top, aValue, rv);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void GetTooltipText(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::tooltiptext, aValue);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
void SetTooltipText(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::tooltiptext, aValue, rv);
|
|
|
|
}
|
2017-10-28 18:54:09 +03:00
|
|
|
void GetSrc(DOMString& aValue) const
|
|
|
|
{
|
|
|
|
GetXULAttr(nsGkAtoms::src, aValue);
|
|
|
|
}
|
|
|
|
void SetSrc(const nsAString& aValue, mozilla::ErrorResult& rv)
|
|
|
|
{
|
|
|
|
SetXULAttr(nsGkAtoms::src, aValue, rv);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
bool AllowEvents() const
|
|
|
|
{
|
|
|
|
return BoolAttrIsTrue(nsGkAtoms::allowevents);
|
|
|
|
}
|
2017-02-02 18:32:58 +03:00
|
|
|
void SetAllowEvents(bool aAllowEvents)
|
|
|
|
{
|
|
|
|
SetXULBoolAttr(nsGkAtoms::allowevents, aAllowEvents);
|
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
nsIControllers* GetControllers(mozilla::ErrorResult& rv);
|
2017-02-02 18:32:58 +03:00
|
|
|
// Note: this can only fail if the do_CreateInstance for the boxobject
|
|
|
|
// contact fails for some reason.
|
2014-10-15 00:15:21 +04:00
|
|
|
already_AddRefed<mozilla::dom::BoxObject> GetBoxObject(mozilla::ErrorResult& rv);
|
2017-02-02 18:32:58 +03:00
|
|
|
void Click(mozilla::dom::CallerType aCallerType);
|
2017-02-02 18:32:57 +03:00
|
|
|
void DoCommand();
|
2013-01-29 21:51:55 +04:00
|
|
|
// Style() inherited from nsStyledElement
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
nsINode* GetScopeChainParent() const override
|
2014-10-31 00:38:48 +03:00
|
|
|
{
|
2014-10-31 00:43:42 +03:00
|
|
|
// For XUL, the parent is the parent element, if any
|
2014-10-31 00:38:48 +03:00
|
|
|
Element* parent = GetParentElement();
|
|
|
|
return parent ? parent : nsStyledElement::GetScopeChainParent();
|
|
|
|
}
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
protected:
|
2014-07-09 01:23:16 +04:00
|
|
|
~nsXULElement();
|
2006-10-31 16:25:40 +03:00
|
|
|
|
2008-08-05 04:58:16 +04:00
|
|
|
// This can be removed if EnsureContentsGenerated dies.
|
|
|
|
friend class nsNSElementTearoff;
|
|
|
|
|
1999-10-19 03:05:35 +04:00
|
|
|
// Implementation methods
|
|
|
|
nsresult EnsureContentsGenerated(void) const;
|
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
nsresult AddPopupListener(nsAtom* aName);
|
1999-10-29 05:21:15 +04:00
|
|
|
|
2001-10-23 00:48:52 +04:00
|
|
|
/**
|
|
|
|
* The nearest enclosing content node with a binding
|
2018-05-22 00:11:11 +03:00
|
|
|
* that created us.
|
2001-10-23 00:48:52 +04:00
|
|
|
*/
|
2018-05-22 00:11:11 +03:00
|
|
|
nsCOMPtr<nsIContent> mBindingParent;
|
2000-08-12 10:28:02 +04:00
|
|
|
|
2001-10-23 00:48:52 +04:00
|
|
|
/**
|
|
|
|
* Abandon our prototype linkage, and copy all attributes locally
|
|
|
|
*/
|
2012-07-14 19:28:54 +04:00
|
|
|
nsresult MakeHeavyweight(nsXULPrototypeElement* aPrototype);
|
2005-10-28 06:59:38 +04:00
|
|
|
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult BeforeSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-03-16 21:50:41 +03:00
|
|
|
const nsAttrValueOrString* aValue,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool aNotify) override;
|
2017-10-03 01:05:19 +03:00
|
|
|
virtual nsresult AfterSetAttr(int32_t aNamespaceID, nsAtom* aName,
|
2017-05-19 00:09:01 +03:00
|
|
|
const nsAttrValue* aValue,
|
|
|
|
const nsAttrValue* aOldValue,
|
2017-10-10 00:33:38 +03:00
|
|
|
nsIPrincipal* aSubjectPrincipal,
|
2017-05-19 00:09:01 +03:00
|
|
|
bool aNotify) override;
|
2005-10-28 06:59:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void UpdateEditableState(bool aNotify) override;
|
2011-06-01 05:46:57 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
virtual bool ParseAttribute(int32_t aNamespaceID,
|
2017-10-03 01:05:19 +03:00
|
|
|
nsAtom* aAttribute,
|
2005-10-28 06:59:38 +04:00
|
|
|
const nsAString& aValue,
|
2017-11-02 06:35:52 +03:00
|
|
|
nsIPrincipal* aMaybeScriptedPrincipal,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsAttrValue& aResult) override;
|
2005-10-28 06:59:38 +04:00
|
|
|
|
2014-03-17 10:56:53 +04:00
|
|
|
virtual mozilla::EventListenerManager*
|
2017-10-03 01:05:19 +03:00
|
|
|
GetEventListenerManagerForAttr(nsAtom* aAttrName,
|
2015-03-21 19:28:04 +03:00
|
|
|
bool* aDefer) override;
|
2016-01-09 03:11:58 +03:00
|
|
|
|
2001-10-23 00:48:52 +04:00
|
|
|
/**
|
|
|
|
* Add a listener for the specified attribute, if appropriate.
|
|
|
|
*/
|
2018-07-31 21:07:32 +03:00
|
|
|
void AddListenerFor(const nsAttrName& aName);
|
2017-10-03 01:05:19 +03:00
|
|
|
void MaybeAddPopupListener(nsAtom* aLocalName);
|
1999-10-19 03:05:35 +04:00
|
|
|
|
2009-10-21 11:05:34 +04:00
|
|
|
nsIWidget* GetWindowWidget();
|
Reduce seeks outside the FastLoad file's underlying stream buffer (195010,
r=ben, sr=bryner).
- Pass null scope objects into nsIScriptContext::Compile{EventHandler,Script}
when precompiling for brutal sharing. The JS engine does not need a non-null
object parameter for static scope. That parameter can be non-null only if it
helps the compiler "pre-bind" functions to the same scope object that they'll
be parented by when executing, but with brutal sharing, functions are
precompiled once and executed against many different scope objects.
- A problem in XUL FastLoad was that it would serialize master .xul document
out-of-line scripts (those included via script src= from non-overlay, "master"
.xul docs) far from the place in the FastLoad file where XUL prototype script
info was serialized for the <script src=> tag itself. I fixed that so that,
unless the out-of-line script was previously serialized (by a different src=
reference from another .xul file), the OOL script data immediately follows the
proto-script info in the FastLoad file.
This required adding a SerializeOutOfLine method to nsXULPrototypeScript, which
restores symmetry by matching the existing DeserializeOutOfLine(Script) (note:
I dropped the redundant "Script" from the end of the latter method's name. We
need SerializeOutOfLine to handle overlay OOL scripts. They are serialized by
nsXULDocument::OnStreamComplete, because that code knows the difference between
an overlay and a master doc. This removes all trace of FastLoad writing from
nsXULPrototypeScript::Compile -- FastLoad stuff didn't belong there, not only
because we now want to write master OOL scripts later, when walking the master
XUL prototype doc's element tree, but also for modularity reasons. The caller
knows about FastLoad, nsXULPrototypeScript::Compile does just what its name
implies.
There are 132 seeks with the patch, only 49 of which dump the underlying file
stream's buffer, vs. 133 seeks without the patch, 87 of which dump the buffer.
- Nit-picked some comments to fit in 80 columns, and made other cosmetic fixes.
- Implicated the nsXULDocument::mIsWritingFastLoad flag from the useXULCache
"is the XUL cache enabled?" flag, so other places that test mIsWritingFastLoad
don't have to query whether the cache is enabled.
- Added METERING synchronous meter-dumping to /tmp/bufstats, only ifdef
DEBUG_brendan, in netwerk/base/src/nsBufferedStreams.cpp.
- Added the deferred seek optimization from the first patch in bug 195010 to
nsFastLoadFile.cpp.
- Fixed nsFastLoadFileReader so it overrides readSegments as well as read.
This catches up with the interface extension made to nsIInputStream to add
readSegments. The nsFastLoadFileReader extends nsBinaryInputStream, which is
a concrete class, and overrides Read in order to snoop on *all* bytes read.
It does this in order to demultiplex documents interleaved when the FastLoad
file was written.
But since the readSegments move into nsIInputStream.idl, certain primitives
in nsBinaryStream.cpp, e.g., nsBinaryInputStream::ReadCString, have used
ReadSegments, not Read, to consume parts of the underlying stream (to read
the C string's chars, in that example), and the FastLoad file implementation
has not accounted for those bytes.
- Added a new method to nsIFastLoadFileControl and its impls: hasMuxedDocument.
This is needed when serializing master XUL doc OOL scripts, because we must
not serialize twice, and any OOL script that other XUL docs can include via
script src= could already be in the FastLoad mux.
/be
2003-04-12 05:34:11 +04:00
|
|
|
|
2010-06-25 06:01:07 +04:00
|
|
|
// attribute setters for widget
|
2011-09-29 10:19:26 +04:00
|
|
|
nsresult HideWindowChrome(bool aShouldHide);
|
2012-02-14 06:00:56 +04:00
|
|
|
void SetChromeMargins(const nsAttrValue* aValue);
|
2010-06-25 06:01:07 +04:00
|
|
|
void ResetChromeMargins();
|
2007-10-30 07:03:42 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
void SetDrawsInTitlebar(bool aState);
|
2013-12-17 20:11:13 +04:00
|
|
|
void SetDrawsTitle(bool aState);
|
2014-11-04 06:14:10 +03:00
|
|
|
void UpdateBrightTitlebarForeground(nsIDocument* aDocument);
|
2009-10-21 11:05:34 +04:00
|
|
|
|
2008-01-29 18:12:34 +03:00
|
|
|
void RemoveBroadcaster(const nsAString & broadcasterId);
|
|
|
|
|
1999-10-20 22:55:32 +04:00
|
|
|
protected:
|
2018-02-23 21:25:34 +03:00
|
|
|
void AddTooltipSupport();
|
|
|
|
void RemoveTooltipSupport();
|
|
|
|
|
2005-01-14 22:30:55 +03:00
|
|
|
// Internal accessor. This shadows the 'Slots', and returns
|
|
|
|
// appropriate value.
|
|
|
|
nsIControllers *Controllers() {
|
2017-07-18 01:25:49 +03:00
|
|
|
nsExtendedDOMSlots* slots = GetExistingExtendedDOMSlots();
|
|
|
|
return slots ? slots->mControllers.get() : nullptr;
|
2005-01-14 22:30:55 +03:00
|
|
|
}
|
2001-08-24 00:07:10 +04:00
|
|
|
|
2002-02-21 16:39:39 +03:00
|
|
|
void UnregisterAccessKey(const nsAString& aOldValue);
|
2017-10-03 01:05:19 +03:00
|
|
|
bool BoolAttrIsTrue(nsAtom* aName) const;
|
2004-06-25 16:26:02 +04:00
|
|
|
|
2018-04-27 18:04:37 +03:00
|
|
|
friend nsXULElement*
|
|
|
|
NS_NewBasicXULElement(already_AddRefed<mozilla::dom::NodeInfo>&& aNodeInfo);
|
|
|
|
|
2004-06-25 16:26:02 +04:00
|
|
|
friend nsresult
|
2017-10-11 01:25:10 +03:00
|
|
|
NS_NewXULElement(mozilla::dom::Element** aResult, mozilla::dom::NodeInfo *aNodeInfo,
|
|
|
|
mozilla::dom::FromParser aFromParser, const nsAString* aIs);
|
2010-08-20 03:12:46 +04:00
|
|
|
friend void
|
2017-12-05 20:05:51 +03:00
|
|
|
NS_TrustedNewXULElement(mozilla::dom::Element** aResult, mozilla::dom::NodeInfo *aNodeInfo);
|
2005-09-11 21:15:08 +04:00
|
|
|
|
|
|
|
static already_AddRefed<nsXULElement>
|
2018-04-27 18:04:37 +03:00
|
|
|
CreateFromPrototype(nsXULPrototypeElement* aPrototype,
|
|
|
|
mozilla::dom::NodeInfo *aNodeInfo,
|
|
|
|
bool aIsScriptable,
|
|
|
|
bool aIsRoot);
|
2007-02-18 17:38:04 +03:00
|
|
|
|
2011-06-01 05:46:57 +04:00
|
|
|
bool IsReadWriteTextElement() const
|
|
|
|
{
|
2015-03-03 14:09:00 +03:00
|
|
|
return IsAnyOfXULElements(nsGkAtoms::textbox, nsGkAtoms::textarea) &&
|
|
|
|
!HasAttr(kNameSpaceID_None, nsGkAtoms::readonly);
|
2011-06-01 05:46:57 +04:00
|
|
|
}
|
2013-01-29 21:51:55 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapNode(JSContext *aCx, JS::Handle<JSObject*> aGivenProto) override;
|
2013-02-05 03:22:51 +04:00
|
|
|
|
|
|
|
void MaybeUpdatePrivateLifetime();
|
2016-10-18 11:55:26 +03:00
|
|
|
|
|
|
|
bool IsEventStoppedFromAnonymousScrollbar(mozilla::EventMessage aMessage);
|
|
|
|
|
2016-10-21 12:58:34 +03:00
|
|
|
nsresult DispatchXULCommand(const mozilla::EventChainVisitor& aVisitor,
|
2016-10-18 11:55:26 +03:00
|
|
|
nsAutoString& aCommand);
|
1999-10-19 03:05:35 +04:00
|
|
|
};
|
|
|
|
|
1999-03-10 08:37:31 +03:00
|
|
|
#endif // nsXULElement_h__
|