2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2009-04-23 00:21:22 -07:00
|
|
|
/* vim: set ts=2 sw=2 et tw=79: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Base class for all element classes; this provides an implementation
|
|
|
|
* of DOM Core's nsIDOMElement, implements nsIContent, provides
|
|
|
|
* utility methods for subclasses, and so forth.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 15:58:45 -08:00
|
|
|
#include "mozilla/DebugOnly.h"
|
2011-10-10 22:50:08 -07:00
|
|
|
|
2012-11-14 14:10:08 -08:00
|
|
|
#include "mozilla/dom/Element.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-04-09 08:29:44 -07:00
|
|
|
#include "mozilla/dom/Attr.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDOMAttributeMap.h"
|
|
|
|
#include "nsIAtom.h"
|
2012-03-28 22:43:09 -07:00
|
|
|
#include "nsINodeInfo.h"
|
2013-01-12 13:53:01 -08:00
|
|
|
#include "nsIDocumentInlines.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMNodeList.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIContentIterator.h"
|
2011-06-23 19:18:01 -07:00
|
|
|
#include "nsEventListenerManager.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
#include "nsFocusManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsILinkHandler.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIURL.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIFrame.h"
|
2010-02-11 09:34:01 -08:00
|
|
|
#include "nsIAnonymousContentCreator.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsPresContext.h"
|
|
|
|
#include "nsStyleConsts.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsUnicharUtils.h"
|
2011-04-21 10:35:52 -07:00
|
|
|
#include "nsEventStateManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsDOMCID.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIDOMCSSStyleDeclaration.h"
|
2009-09-02 17:28:37 -07:00
|
|
|
#include "nsDOMCSSAttrDeclaration.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsContentList.h"
|
2009-08-12 01:55:14 -07:00
|
|
|
#include "nsDOMTokenList.h"
|
2011-02-10 23:47:00 -08:00
|
|
|
#include "nsXBLPrototypeBinding.h"
|
2012-07-27 07:03:27 -07:00
|
|
|
#include "nsError.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDOMString.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsIDOMMutationEvent.h"
|
|
|
|
#include "nsMutationEvent.h"
|
|
|
|
#include "nsNodeUtils.h"
|
2012-04-16 21:03:10 -07:00
|
|
|
#include "mozilla/dom/DirectionalityUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsDocument.h"
|
2012-02-13 18:00:56 -08:00
|
|
|
#include "nsAttrValueOrString.h"
|
2012-09-30 09:40:24 -07:00
|
|
|
#include "nsAttrValueInlines.h"
|
2007-07-08 17:58:15 -07:00
|
|
|
#ifdef MOZ_XUL
|
2007-05-15 18:13:47 -07:00
|
|
|
#include "nsXULElement.h"
|
2007-07-08 17:58:15 -07:00
|
|
|
#endif /* MOZ_XUL */
|
2007-09-21 02:15:42 -07:00
|
|
|
#include "nsFrameManager.h"
|
2008-02-19 23:40:04 -08:00
|
|
|
#include "nsFrameSelection.h"
|
2011-12-20 01:15:41 -08:00
|
|
|
#ifdef DEBUG
|
2012-01-10 06:19:54 -08:00
|
|
|
#include "nsRange.h"
|
2011-12-20 01:15:41 -08:00
|
|
|
#endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsBindingManager.h"
|
|
|
|
#include "nsXBLBinding.h"
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
#include "nsPIBoxObject.h"
|
2008-03-11 17:51:12 -07:00
|
|
|
#include "nsClientRect.h"
|
2007-05-30 15:32:54 -07:00
|
|
|
#include "nsSVGUtils.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsContentUtils.h"
|
2013-05-01 15:50:08 -07:00
|
|
|
#include "ChildIterator.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsIDOMEventListener.h"
|
|
|
|
#include "nsIWebNavigation.h"
|
|
|
|
#include "nsIBaseWindow.h"
|
2011-11-27 03:51:53 -08:00
|
|
|
#include "nsIWidget.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "jsapi.h"
|
|
|
|
|
|
|
|
#include "nsNodeInfoManager.h"
|
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsIDOMDocumentType.h"
|
|
|
|
#include "nsIDOMUserDataHandler.h"
|
2009-02-10 12:56:51 -08:00
|
|
|
#include "nsGenericHTMLElement.h"
|
2008-02-19 23:40:04 -08:00
|
|
|
#include "nsIEditor.h"
|
2010-05-04 10:40:39 -07:00
|
|
|
#include "nsIEditorIMESupport.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsEventDispatcher.h"
|
|
|
|
#include "nsContentCreatorFunctions.h"
|
|
|
|
#include "nsIControllers.h"
|
2013-01-03 05:23:11 -08:00
|
|
|
#include "nsView.h"
|
2013-01-04 19:12:24 -08:00
|
|
|
#include "nsViewManager.h"
|
2008-08-15 15:26:37 -07:00
|
|
|
#include "nsIScrollableFrame.h"
|
2011-03-10 18:48:57 -08:00
|
|
|
#include "mozilla/css/StyleRule.h" /* For nsCSSSelectorList */
|
2008-07-21 17:55:52 -07:00
|
|
|
#include "nsCSSRuleProcessor.h"
|
2009-08-01 08:53:40 -07:00
|
|
|
#include "nsRuleProcessorData.h"
|
2011-12-16 22:02:05 -08:00
|
|
|
#include "nsAsyncDOMEvent.h"
|
2011-08-15 17:55:20 -07:00
|
|
|
#include "nsTextNode.h"
|
2013-03-26 00:15:23 -07:00
|
|
|
#include "mozilla/dom/HTMLTemplateElement.h"
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2007-07-08 17:58:15 -07:00
|
|
|
#ifdef MOZ_XUL
|
2007-05-24 17:28:20 -07:00
|
|
|
#include "nsIXULDocument.h"
|
2007-07-08 17:58:15 -07:00
|
|
|
#endif /* MOZ_XUL */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2007-05-10 13:21:12 -07:00
|
|
|
#include "nsCCUncollectableMarker.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-11 10:29:06 -07:00
|
|
|
#include "mozAutoDocUpdate.h"
|
|
|
|
|
2010-03-02 12:59:32 -08:00
|
|
|
#include "nsCSSParser.h"
|
2010-09-14 21:46:40 -07:00
|
|
|
#include "prprf.h"
|
2012-03-31 09:30:13 -07:00
|
|
|
#include "nsDOMMutationObserver.h"
|
2009-05-07 12:37:33 -07:00
|
|
|
#include "nsSVGFeatures.h"
|
2011-05-26 12:58:35 -07:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
2011-08-24 12:49:25 -07:00
|
|
|
#include "xpcpublic.h"
|
2012-05-18 01:29:40 -07:00
|
|
|
#include "nsIScriptError.h"
|
2012-03-01 05:09:00 -08:00
|
|
|
#include "nsLayoutStatics.h"
|
|
|
|
#include "mozilla/Telemetry.h"
|
2011-08-24 12:49:25 -07:00
|
|
|
|
2012-03-10 08:13:51 -08:00
|
|
|
#include "mozilla/CORSMode.h"
|
|
|
|
|
2012-03-21 21:10:51 -07:00
|
|
|
#include "nsStyledElement.h"
|
2012-10-16 04:51:00 -07:00
|
|
|
#include "nsXBLService.h"
|
2012-12-23 18:38:41 -08:00
|
|
|
#include "nsContentCID.h"
|
|
|
|
#include "nsITextControlElement.h"
|
2013-04-10 07:15:54 -07:00
|
|
|
#include "mozilla/dom/DocumentFragment.h"
|
2012-03-21 21:10:51 -07:00
|
|
|
|
2011-10-10 22:50:08 -07:00
|
|
|
using namespace mozilla;
|
2010-04-30 06:12:05 -07:00
|
|
|
using namespace mozilla::dom;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-10-20 04:26:32 -07:00
|
|
|
nsEventStates
|
2011-05-31 18:46:56 -07:00
|
|
|
Element::IntrinsicState() const
|
2007-06-27 19:48:16 -07:00
|
|
|
{
|
2007-07-11 06:05:05 -07:00
|
|
|
return IsEditable() ? NS_EVENT_STATE_MOZ_READWRITE :
|
|
|
|
NS_EVENT_STATE_MOZ_READONLY;
|
2007-06-27 19:48:16 -07:00
|
|
|
}
|
|
|
|
|
2011-05-31 18:46:56 -07:00
|
|
|
void
|
|
|
|
Element::NotifyStateChange(nsEventStates aStates)
|
|
|
|
{
|
|
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
|
|
if (doc) {
|
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
|
|
|
doc->ContentStateChanged(this, aStates);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-31 18:46:57 -07:00
|
|
|
void
|
|
|
|
Element::UpdateLinkState(nsEventStates aState)
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(!aState.HasAtLeastOneOfStates(~(NS_EVENT_STATE_VISITED |
|
|
|
|
NS_EVENT_STATE_UNVISITED)),
|
|
|
|
"Unexpected link state bits");
|
|
|
|
mState =
|
|
|
|
(mState & ~(NS_EVENT_STATE_VISITED | NS_EVENT_STATE_UNVISITED)) |
|
|
|
|
aState;
|
|
|
|
}
|
|
|
|
|
2007-06-27 19:48:16 -07:00
|
|
|
void
|
2011-05-31 18:46:57 -07:00
|
|
|
Element::UpdateState(bool aNotify)
|
2007-06-27 19:48:16 -07:00
|
|
|
{
|
2011-05-31 18:46:57 -07:00
|
|
|
nsEventStates oldState = mState;
|
|
|
|
mState = IntrinsicState() | (oldState & ESM_MANAGED_STATES);
|
|
|
|
if (aNotify) {
|
|
|
|
nsEventStates changedStates = oldState ^ mState;
|
|
|
|
if (!changedStates.IsEmpty()) {
|
|
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
|
|
if (doc) {
|
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
|
|
|
doc->ContentStateChanged(this, changedStates);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-28 23:19:26 -07:00
|
|
|
nsIContent::UpdateEditableState(bool aNotify)
|
2011-05-31 18:46:57 -07:00
|
|
|
{
|
|
|
|
// Guaranteed to be non-element content
|
|
|
|
NS_ASSERTION(!IsElement(), "What happened here?");
|
2007-06-27 19:48:16 -07:00
|
|
|
nsIContent *parent = GetParent();
|
|
|
|
|
|
|
|
SetEditableFlag(parent && parent->HasFlag(NODE_IS_EDITABLE));
|
|
|
|
}
|
|
|
|
|
2011-05-31 18:46:57 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::UpdateEditableState(bool aNotify)
|
2011-05-31 18:46:57 -07:00
|
|
|
{
|
|
|
|
nsIContent *parent = GetParent();
|
|
|
|
|
|
|
|
SetEditableFlag(parent && parent->HasFlag(NODE_IS_EDITABLE));
|
2011-07-20 12:58:25 -07:00
|
|
|
if (aNotify) {
|
|
|
|
UpdateState(aNotify);
|
|
|
|
} else {
|
|
|
|
// Avoid calling UpdateState in this very common case, because
|
|
|
|
// this gets called for pretty much every single element on
|
|
|
|
// insertion into the document and UpdateState can be slow for
|
|
|
|
// some kinds of elements even when not notifying.
|
|
|
|
if (IsEditable()) {
|
|
|
|
RemoveStatesSilently(NS_EVENT_STATE_MOZ_READONLY);
|
|
|
|
AddStatesSilently(NS_EVENT_STATE_MOZ_READWRITE);
|
2011-05-31 18:46:57 -07:00
|
|
|
} else {
|
2011-07-20 12:58:25 -07:00
|
|
|
RemoveStatesSilently(NS_EVENT_STATE_MOZ_READWRITE);
|
|
|
|
AddStatesSilently(NS_EVENT_STATE_MOZ_READONLY);
|
2011-05-31 18:46:57 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-08 10:42:38 -08:00
|
|
|
nsEventStates
|
|
|
|
Element::StyleStateFromLocks() const
|
|
|
|
{
|
|
|
|
nsEventStates locks = LockedStyleStates();
|
|
|
|
nsEventStates state = mState | locks;
|
|
|
|
|
|
|
|
if (locks.HasState(NS_EVENT_STATE_VISITED)) {
|
|
|
|
return state & ~NS_EVENT_STATE_UNVISITED;
|
|
|
|
}
|
|
|
|
if (locks.HasState(NS_EVENT_STATE_UNVISITED)) {
|
|
|
|
return state & ~NS_EVENT_STATE_VISITED;
|
|
|
|
}
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsEventStates
|
|
|
|
Element::LockedStyleStates() const
|
|
|
|
{
|
|
|
|
nsEventStates *locks =
|
|
|
|
static_cast<nsEventStates*> (GetProperty(nsGkAtoms::lockedStyleStates));
|
|
|
|
if (locks) {
|
|
|
|
return *locks;
|
|
|
|
}
|
|
|
|
return nsEventStates();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nsEventStatesPropertyDtor(void *aObject, nsIAtom *aProperty,
|
|
|
|
void *aPropertyValue, void *aData)
|
|
|
|
{
|
|
|
|
nsEventStates *states = static_cast<nsEventStates*>(aPropertyValue);
|
|
|
|
delete states;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::NotifyStyleStateChange(nsEventStates aStates)
|
|
|
|
{
|
|
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
|
|
if (doc) {
|
|
|
|
nsIPresShell *presShell = doc->GetShell();
|
|
|
|
if (presShell) {
|
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
|
|
|
presShell->ContentStateChanged(doc, this, aStates);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::LockStyleStates(nsEventStates aStates)
|
|
|
|
{
|
|
|
|
nsEventStates *locks = new nsEventStates(LockedStyleStates());
|
|
|
|
|
|
|
|
*locks |= aStates;
|
|
|
|
|
|
|
|
if (aStates.HasState(NS_EVENT_STATE_VISITED)) {
|
|
|
|
*locks &= ~NS_EVENT_STATE_UNVISITED;
|
|
|
|
}
|
|
|
|
if (aStates.HasState(NS_EVENT_STATE_UNVISITED)) {
|
|
|
|
*locks &= ~NS_EVENT_STATE_VISITED;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetProperty(nsGkAtoms::lockedStyleStates, locks, nsEventStatesPropertyDtor);
|
|
|
|
SetHasLockedStyleStates();
|
|
|
|
|
|
|
|
NotifyStyleStateChange(aStates);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::UnlockStyleStates(nsEventStates aStates)
|
|
|
|
{
|
|
|
|
nsEventStates *locks = new nsEventStates(LockedStyleStates());
|
|
|
|
|
|
|
|
*locks &= ~aStates;
|
|
|
|
|
|
|
|
if (locks->IsEmpty()) {
|
|
|
|
DeleteProperty(nsGkAtoms::lockedStyleStates);
|
|
|
|
ClearHasLockedStyleStates();
|
|
|
|
delete locks;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SetProperty(nsGkAtoms::lockedStyleStates, locks, nsEventStatesPropertyDtor);
|
|
|
|
}
|
|
|
|
|
|
|
|
NotifyStyleStateChange(aStates);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::ClearStyleStateLocks()
|
|
|
|
{
|
|
|
|
nsEventStates locks = LockedStyleStates();
|
|
|
|
|
|
|
|
DeleteProperty(nsGkAtoms::lockedStyleStates);
|
|
|
|
ClearHasLockedStyleStates();
|
|
|
|
|
|
|
|
NotifyStyleStateChange(locks);
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
bool
|
|
|
|
Element::GetBindingURL(nsIDocument *aDocument, css::URLValue **aResult)
|
|
|
|
{
|
|
|
|
// If we have a frame the frame has already loaded the binding. And
|
|
|
|
// otherwise, don't do anything else here unless we're dealing with
|
|
|
|
// XUL or an HTML element that may have a plugin-related overlay
|
|
|
|
// (i.e. object, embed, or applet).
|
|
|
|
bool isXULorPluginElement = (IsXUL() ||
|
|
|
|
IsHTML(nsGkAtoms::object) ||
|
|
|
|
IsHTML(nsGkAtoms::embed) ||
|
|
|
|
IsHTML(nsGkAtoms::applet));
|
|
|
|
nsIPresShell *shell = aDocument->GetShell();
|
|
|
|
if (!shell || GetPrimaryFrame() || !isXULorPluginElement) {
|
|
|
|
*aResult = nullptr;
|
2008-08-04 17:58:16 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return true;
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// Get the computed -moz-binding directly from the style context
|
|
|
|
nsPresContext *pctx = shell->GetPresContext();
|
|
|
|
NS_ENSURE_TRUE(pctx, false);
|
2008-08-04 17:58:16 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsRefPtr<nsStyleContext> sc = pctx->StyleSet()->ResolveStyleFor(this,
|
|
|
|
nullptr);
|
|
|
|
NS_ENSURE_TRUE(sc, false);
|
2008-08-04 17:58:16 -07:00
|
|
|
|
2013-02-16 13:51:02 -08:00
|
|
|
*aResult = sc->StyleDisplay()->mBinding;
|
2008-08-04 17:58:16 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return true;
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
JSObject*
|
2013-04-25 09:29:54 -07:00
|
|
|
Element::WrapObject(JSContext *aCx, JS::Handle<JSObject*> aScope)
|
2008-08-04 17:58:16 -07:00
|
|
|
{
|
2013-03-11 16:03:47 -07:00
|
|
|
JSObject* obj = nsINode::WrapObject(aCx, aScope);
|
2012-10-16 04:51:00 -07:00
|
|
|
if (!obj) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsIDocument* doc;
|
|
|
|
if (HasFlag(NODE_FORCE_XBL_BINDINGS)) {
|
|
|
|
doc = OwnerDoc();
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
2012-10-16 04:51:00 -07:00
|
|
|
else {
|
|
|
|
doc = GetCurrentDoc();
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
if (!doc) {
|
|
|
|
// There's no baseclass that cares about this call so we just
|
|
|
|
// return here.
|
|
|
|
return obj;
|
|
|
|
}
|
2011-12-18 02:06:23 -08:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// We must ensure that the XBL Binding is installed before we hand
|
|
|
|
// back this object.
|
2011-12-18 02:06:23 -08:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
if (HasFlag(NODE_MAY_BE_IN_BINDING_MNGR) &&
|
|
|
|
doc->BindingManager()->GetBinding(this)) {
|
|
|
|
// There's already a binding for this element so nothing left to
|
|
|
|
// be done here.
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// In theory we could call ExecuteAttachedHandler here when it's safe to
|
|
|
|
// run script if we also removed the binding from the PAQ queue, but that
|
|
|
|
// seems like a scary change that would mosly just add more
|
|
|
|
// inconsistencies.
|
|
|
|
return obj;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// Make sure the style context goes away _before_ we load the binding
|
|
|
|
// since that can destroy the relevant presshell.
|
|
|
|
mozilla::css::URLValue *bindingURL;
|
|
|
|
bool ok = GetBindingURL(doc, &bindingURL);
|
|
|
|
if (!ok) {
|
|
|
|
dom::Throw<true>(aCx, NS_ERROR_FAILURE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
if (!bindingURL) {
|
|
|
|
// No binding, nothing left to do here.
|
|
|
|
return obj;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsCOMPtr<nsIURI> uri = bindingURL->GetURI();
|
|
|
|
nsCOMPtr<nsIPrincipal> principal = bindingURL->mOriginPrincipal;
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// We have a binding that must be installed.
|
|
|
|
bool dummy;
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsXBLService* xblService = nsXBLService::GetInstance();
|
|
|
|
if (!xblService) {
|
|
|
|
dom::Throw<true>(aCx, NS_ERROR_NOT_AVAILABLE);
|
|
|
|
return nullptr;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsRefPtr<nsXBLBinding> binding;
|
2013-01-24 09:45:50 -08:00
|
|
|
xblService->LoadBindings(this, uri, principal, getter_AddRefs(binding), &dummy);
|
2012-10-16 04:51:00 -07:00
|
|
|
|
|
|
|
if (binding) {
|
|
|
|
if (nsContentUtils::IsSafeToRunScript()) {
|
|
|
|
binding->ExecuteAttachedHandler();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nsContentUtils::AddScriptRunner(
|
|
|
|
NS_NewRunnableMethod(binding, &nsXBLBinding::ExecuteAttachedHandler));
|
|
|
|
}
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return obj;
|
2010-04-19 08:41:37 -07:00
|
|
|
}
|
|
|
|
|
2012-11-14 14:10:08 -08:00
|
|
|
Element*
|
|
|
|
Element::GetFirstElementChild() const
|
2010-04-19 08:41:37 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
uint32_t i, count = mAttrsAndChildren.ChildCount();
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
nsIContent* child = mAttrsAndChildren.ChildAt(i);
|
|
|
|
if (child->IsElement()) {
|
2012-11-14 14:10:08 -08:00
|
|
|
return child->AsElement();
|
2012-10-16 04:51:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-11-14 14:10:08 -08:00
|
|
|
Element*
|
|
|
|
Element::GetLastElementChild() const
|
2012-10-16 04:51:00 -07:00
|
|
|
{
|
|
|
|
uint32_t i = mAttrsAndChildren.ChildCount();
|
|
|
|
while (i > 0) {
|
|
|
|
nsIContent* child = mAttrsAndChildren.ChildAt(--i);
|
|
|
|
if (child->IsElement()) {
|
2012-11-14 14:10:08 -08:00
|
|
|
return child->AsElement();
|
2012-10-16 04:51:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
|
|
|
|
2011-08-22 02:14:13 -07:00
|
|
|
nsDOMTokenList*
|
2012-11-22 03:09:43 -08:00
|
|
|
Element::GetClassList()
|
2010-04-19 08:41:37 -07:00
|
|
|
{
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::nsDOMSlots *slots = DOMSlots();
|
2008-08-04 17:58:16 -07:00
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
if (!slots->mClassList) {
|
2012-11-22 03:09:43 -08:00
|
|
|
nsIAtom* classAttr = GetClassAttributeName();
|
2012-10-16 04:51:00 -07:00
|
|
|
if (classAttr) {
|
|
|
|
slots->mClassList = new nsDOMTokenList(this, classAttr);
|
2010-04-19 08:41:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return slots->mClassList;
|
2008-08-04 17:58:16 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2013-01-15 00:35:59 -08:00
|
|
|
Element::GetClassList(nsISupports** aClassList)
|
2009-08-12 01:55:14 -07:00
|
|
|
{
|
2012-11-22 03:09:43 -08:00
|
|
|
NS_IF_ADDREF(*aClassList = GetClassList());
|
2009-08-12 01:55:14 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsIHTMLCollection>
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByTagName(const nsAString& aLocalName)
|
2009-09-13 06:13:16 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
return NS_GetContentList(this, kNameSpaceID_Unknown, aLocalName);
|
2010-05-06 05:32:14 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByTagName(const nsAString& aLocalName,
|
|
|
|
nsIDOMHTMLCollection** aResult)
|
2009-09-13 06:13:16 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
*aResult = GetElementsByTagName(aLocalName).get();
|
2009-09-13 06:13:16 -07:00
|
|
|
}
|
|
|
|
|
2008-08-15 15:26:37 -07:00
|
|
|
nsIFrame*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetStyledFrame()
|
2008-08-15 15:26:37 -07:00
|
|
|
{
|
|
|
|
nsIFrame *frame = GetPrimaryFrame(Flush_Layout);
|
2012-07-30 07:20:58 -07:00
|
|
|
return frame ? nsLayoutUtils::GetStyleFrame(frame) : nullptr;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
nsIScrollableFrame*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetScrollFrame(nsIFrame **aStyledFrame)
|
2008-08-15 15:26:37 -07:00
|
|
|
{
|
|
|
|
// it isn't clear what to return for SVG nodes, so just return nothing
|
2010-04-19 08:41:37 -07:00
|
|
|
if (IsSVG()) {
|
2009-09-02 20:57:36 -07:00
|
|
|
if (aStyledFrame) {
|
2012-07-30 07:20:58 -07:00
|
|
|
*aStyledFrame = nullptr;
|
2009-09-02 20:57:36 -07:00
|
|
|
}
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
nsIFrame* frame = GetStyledFrame();
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
if (aStyledFrame) {
|
|
|
|
*aStyledFrame = frame;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
if (!frame) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
// menu frames implement GetScrollTargetFrame but we don't want
|
2011-10-18 13:17:45 -07:00
|
|
|
// to use it here. Similar for comboboxes.
|
|
|
|
if (frame->GetType() != nsGkAtoms::menuFrame &&
|
|
|
|
frame->GetType() != nsGkAtoms::comboboxControlFrame) {
|
2009-09-02 20:57:36 -07:00
|
|
|
nsIScrollableFrame *scrollFrame = frame->GetScrollTargetFrame();
|
|
|
|
if (scrollFrame)
|
|
|
|
return scrollFrame;
|
|
|
|
}
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2011-10-18 03:53:36 -07:00
|
|
|
nsIDocument* doc = OwnerDoc();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool quirksMode = doc->GetCompatibilityMode() == eCompatibility_NavQuirks;
|
2010-04-30 06:12:05 -07:00
|
|
|
Element* elementWithRootScrollInfo =
|
|
|
|
quirksMode ? doc->GetBodyElement() : doc->GetRootElement();
|
2010-04-19 08:41:37 -07:00
|
|
|
if (this == elementWithRootScrollInfo) {
|
2009-09-02 20:57:36 -07:00
|
|
|
// In quirks mode, the scroll info for the body element should map to the
|
|
|
|
// root scrollable frame.
|
|
|
|
// In strict mode, the scroll info for the root element should map to the
|
|
|
|
// the root scrollable frame.
|
|
|
|
return frame->PresContext()->PresShell()->GetRootScrollFrameAsScrollable();
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ScrollIntoView(bool aTop)
|
2008-08-15 15:26:37 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
nsIDocument *document = GetCurrentDoc();
|
|
|
|
if (!document) {
|
|
|
|
return;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
// Get the presentation shell
|
|
|
|
nsCOMPtr<nsIPresShell> presShell = document->GetShell();
|
|
|
|
if (!presShell) {
|
|
|
|
return;
|
|
|
|
}
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
int16_t vpercent = aTop ? nsIPresShell::SCROLL_TOP :
|
|
|
|
nsIPresShell::SCROLL_BOTTOM;
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
presShell->ScrollContentIntoView(this,
|
|
|
|
nsIPresShell::ScrollAxis(
|
|
|
|
vpercent,
|
|
|
|
nsIPresShell::SCROLL_ALWAYS),
|
|
|
|
nsIPresShell::ScrollAxis(),
|
|
|
|
nsIPresShell::SCROLL_OVERFLOW_HIDDEN);
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2013-01-28 17:38:22 -08:00
|
|
|
static nsSize GetScrollRectSizeForOverflowVisibleFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
if (!aFrame) {
|
|
|
|
return nsSize(0,0);
|
|
|
|
}
|
|
|
|
|
2013-04-08 17:05:12 -07:00
|
|
|
nsRect paddingRect = aFrame->GetPaddingRectRelativeToSelf();
|
2013-04-16 00:23:46 -07:00
|
|
|
nsOverflowAreas overflowAreas(paddingRect, paddingRect);
|
2013-04-08 17:05:12 -07:00
|
|
|
// Add the scrollable overflow areas of children (if any) to the paddingRect.
|
|
|
|
// It's important to start with the paddingRect, otherwise if there are no
|
|
|
|
// children the overflow rect will be 0,0,0,0 which will force the point 0,0
|
|
|
|
// to be included in the final rect.
|
2013-04-16 00:23:46 -07:00
|
|
|
nsLayoutUtils::UnionChildOverflow(aFrame, overflowAreas);
|
2013-04-08 17:05:12 -07:00
|
|
|
// Make sure that an empty padding-rect's edges are included, by adding
|
|
|
|
// the padding-rect in again with UnionEdges.
|
|
|
|
nsRect overflowRect =
|
|
|
|
overflowAreas.ScrollableOverflow().UnionEdges(paddingRect);
|
2013-01-28 17:38:22 -08:00
|
|
|
return nsLayoutUtils::GetScrolledRect(aFrame,
|
2013-04-08 17:05:12 -07:00
|
|
|
overflowRect, paddingRect.Size(),
|
2013-02-16 13:51:02 -08:00
|
|
|
aFrame->StyleVisibility()->mDirection).Size();
|
2013-01-28 17:38:22 -08:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ScrollHeight()
|
2008-08-15 15:26:37 -07:00
|
|
|
{
|
2010-04-19 08:41:37 -07:00
|
|
|
if (IsSVG())
|
|
|
|
return 0;
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
2013-01-28 17:38:22 -08:00
|
|
|
nscoord height;
|
|
|
|
if (sf) {
|
|
|
|
height = sf->GetScrollRange().height + sf->GetScrollPortRect().height;
|
|
|
|
} else {
|
|
|
|
height = GetScrollRectSizeForOverflowVisibleFrame(GetStyledFrame()).height;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
return nsPresContext::AppUnitsToIntCSSPixels(height);
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ScrollWidth()
|
2010-04-19 08:41:37 -07:00
|
|
|
{
|
|
|
|
if (IsSVG())
|
|
|
|
return 0;
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
nsIScrollableFrame* sf = GetScrollFrame();
|
2013-01-28 17:38:22 -08:00
|
|
|
nscoord width;
|
|
|
|
if (sf) {
|
|
|
|
width = sf->GetScrollRange().width + sf->GetScrollPortRect().width;
|
|
|
|
} else {
|
|
|
|
width = GetScrollRectSizeForOverflowVisibleFrame(GetStyledFrame()).width;
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
return nsPresContext::AppUnitsToIntCSSPixels(width);
|
|
|
|
}
|
|
|
|
|
2008-08-15 15:26:37 -07:00
|
|
|
nsRect
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetClientAreaRect()
|
2008-08-15 15:26:37 -07:00
|
|
|
{
|
2009-09-02 20:57:36 -07:00
|
|
|
nsIFrame* styledFrame;
|
|
|
|
nsIScrollableFrame* sf = GetScrollFrame(&styledFrame);
|
2008-08-15 15:26:37 -07:00
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
if (sf) {
|
|
|
|
return sf->GetScrollPortRect();
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
if (styledFrame &&
|
2013-02-16 13:51:02 -08:00
|
|
|
(styledFrame->StyleDisplay()->mDisplay != NS_STYLE_DISPLAY_INLINE ||
|
2009-09-02 20:57:36 -07:00
|
|
|
styledFrame->IsFrameOfType(nsIFrame::eReplaced))) {
|
2008-08-15 15:26:37 -07:00
|
|
|
// Special case code to make client area work even when there isn't
|
|
|
|
// a scroll view, see bug 180552, bug 227567.
|
2009-09-02 20:57:36 -07:00
|
|
|
return styledFrame->GetPaddingRect() - styledFrame->GetPositionIgnoringScrolling();
|
2008-08-15 15:26:37 -07:00
|
|
|
}
|
|
|
|
|
2009-09-02 20:57:36 -07:00
|
|
|
// SVG nodes reach here and just return 0
|
2008-08-15 15:26:37 -07:00
|
|
|
return nsRect(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsClientRect>
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetBoundingClientRect()
|
2007-05-30 15:32:54 -07:00
|
|
|
{
|
2013-03-17 00:55:17 -07:00
|
|
|
nsRefPtr<nsClientRect> rect = new nsClientRect(this);
|
2007-05-30 15:32:54 -07:00
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
nsIFrame* frame = GetPrimaryFrame(Flush_Layout);
|
2007-05-30 15:32:54 -07:00
|
|
|
if (!frame) {
|
|
|
|
// display:none, perhaps? Return the empty rect
|
2012-10-16 04:51:00 -07:00
|
|
|
return rect.forget();
|
2007-05-30 15:32:54 -07:00
|
|
|
}
|
2008-02-27 01:26:15 -08:00
|
|
|
|
|
|
|
nsRect r = nsLayoutUtils::GetAllInFlowRectsUnion(frame,
|
2011-12-27 19:26:46 -08:00
|
|
|
nsLayoutUtils::GetContainingBlockForClientRect(frame),
|
|
|
|
nsLayoutUtils::RECTS_ACCOUNT_FOR_TRANSFORMS);
|
2009-09-03 21:49:18 -07:00
|
|
|
rect->SetLayoutRect(r);
|
2012-10-16 04:51:00 -07:00
|
|
|
return rect.forget();
|
2007-05-30 15:32:54 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsClientRectList>
|
2013-03-17 00:55:16 -07:00
|
|
|
Element::GetClientRects()
|
2011-08-11 06:29:50 -07:00
|
|
|
{
|
2011-08-22 02:14:13 -07:00
|
|
|
nsRefPtr<nsClientRectList> rectList = new nsClientRectList(this);
|
2008-02-27 01:26:15 -08:00
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
nsIFrame* frame = GetPrimaryFrame(Flush_Layout);
|
2008-01-28 09:42:52 -08:00
|
|
|
if (!frame) {
|
|
|
|
// display:none, perhaps? Return an empty list
|
2012-10-16 04:51:00 -07:00
|
|
|
return rectList.forget();
|
2008-01-28 09:42:52 -08:00
|
|
|
}
|
|
|
|
|
2009-09-24 14:01:48 -07:00
|
|
|
nsLayoutUtils::RectListBuilder builder(rectList);
|
2008-02-27 01:26:15 -08:00
|
|
|
nsLayoutUtils::GetAllInFlowRects(frame,
|
2011-12-27 19:26:46 -08:00
|
|
|
nsLayoutUtils::GetContainingBlockForClientRect(frame), &builder,
|
|
|
|
nsLayoutUtils::RECTS_ACCOUNT_FOR_TRANSFORMS);
|
2012-10-16 04:51:00 -07:00
|
|
|
return rectList.forget();
|
2007-05-30 15:32:54 -07:00
|
|
|
}
|
|
|
|
|
2010-04-19 08:41:37 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2013-01-29 06:42:15 -08:00
|
|
|
Element::GetAttribute(const nsAString& aName, DOMString& aReturn)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-31 08:36:21 -07:00
|
|
|
const nsAttrValue* val =
|
|
|
|
mAttrsAndChildren.GetAttr(aName,
|
|
|
|
IsHTML() && IsInHTMLDocument() ?
|
|
|
|
eIgnoreCase : eCaseMatters);
|
|
|
|
if (val) {
|
|
|
|
val->ToString(aReturn);
|
|
|
|
} else {
|
|
|
|
if (IsXUL()) {
|
|
|
|
// XXX should be SetDOMStringToNull(aReturn);
|
|
|
|
// See bug 232598
|
2013-01-29 06:42:15 -08:00
|
|
|
// aReturn is already empty
|
2012-07-31 08:36:21 -07:00
|
|
|
} else {
|
2013-01-29 06:42:15 -08:00
|
|
|
aReturn.SetNull();
|
2012-07-31 08:36:21 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetAttribute(const nsAString& aName,
|
|
|
|
const nsAString& aValue,
|
|
|
|
ErrorResult& aError)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
|
|
|
const nsAttrName* name = InternalGetExistingAttrNameFromQName(aName);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
if (!name) {
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = nsContentUtils::CheckQName(aName, false);
|
|
|
|
if (aError.Failed()) {
|
|
|
|
return;
|
|
|
|
}
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
nsCOMPtr<nsIAtom> nameAtom;
|
|
|
|
if (IsHTML() && IsInHTMLDocument()) {
|
|
|
|
nsAutoString lower;
|
|
|
|
nsresult rv = nsContentUtils::ASCIIToLower(aName, lower);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nameAtom = do_GetAtom(lower);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nameAtom = do_GetAtom(aName);
|
|
|
|
}
|
|
|
|
if (!nameAtom) {
|
|
|
|
aError.Throw(NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
aError = SetAttr(kNameSpaceID_None, nameAtom, aValue, true);
|
|
|
|
return;
|
2012-07-31 08:36:21 -07:00
|
|
|
}
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = SetAttr(name->NamespaceID(), name->LocalName(), name->GetPrefix(),
|
|
|
|
aValue, true);
|
|
|
|
return;
|
2008-07-21 17:55:52 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::RemoveAttribute(const nsAString& aName, ErrorResult& aError)
|
2008-07-21 17:55:52 -07:00
|
|
|
{
|
2012-07-31 08:36:21 -07:00
|
|
|
const nsAttrName* name = InternalGetExistingAttrNameFromQName(aName);
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
if (!name) {
|
|
|
|
// If there is no canonical nsAttrName for this attribute name, then the
|
|
|
|
// attribute does not exist and we can't get its namespace ID and
|
|
|
|
// local name below, so we return early.
|
2012-10-16 04:51:00 -07:00
|
|
|
return;
|
2012-07-31 08:36:21 -07:00
|
|
|
}
|
2011-08-24 12:49:25 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
// Hold a strong reference here so that the atom or nodeinfo doesn't go
|
|
|
|
// away during UnsetAttr. If it did UnsetAttr would be left with a
|
|
|
|
// dangling pointer as argument without knowing it.
|
|
|
|
nsAttrName tmp(*name);
|
2011-08-24 12:49:25 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = UnsetAttr(name->NamespaceID(), name->LocalName(), true);
|
2012-07-31 08:36:21 -07:00
|
|
|
}
|
2011-08-24 12:49:25 -07:00
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
Attr*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttributeNode(const nsAString& aName)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
OwnerDoc()->WarnOnceAbout(nsIDocument::eGetAttributeNode);
|
2013-03-09 23:58:47 -08:00
|
|
|
return Attributes()->GetNamedItem(aName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
already_AddRefed<Attr>
|
|
|
|
Element::SetAttributeNode(Attr& aNewAttr, ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-31 08:36:21 -07:00
|
|
|
OwnerDoc()->WarnOnceAbout(nsIDocument::eSetAttributeNode);
|
2011-08-28 07:07:24 -07:00
|
|
|
|
2013-04-25 23:48:23 -07:00
|
|
|
return Attributes()->SetNamedItem(aNewAttr, aError);
|
2011-08-28 07:07:24 -07:00
|
|
|
}
|
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
already_AddRefed<Attr>
|
|
|
|
Element::RemoveAttributeNode(Attr& aAttribute,
|
2012-11-14 14:10:08 -08:00
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-18 04:19:44 -07:00
|
|
|
OwnerDoc()->WarnOnceAbout(nsIDocument::eRemoveAttributeNode);
|
2013-04-25 23:48:23 -07:00
|
|
|
return Attributes()->RemoveNamedItem(aAttribute.NodeName(), aError);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttributeNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
nsAString& aReturn)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t nsid =
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
|
|
|
|
|
|
|
if (nsid == kNameSpaceID_Unknown) {
|
2012-03-11 00:48:16 -08:00
|
|
|
// Unknown namespace means no attribute.
|
|
|
|
SetDOMStringToNull(aReturn);
|
2012-10-16 04:51:00 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> name = do_GetAtom(aLocalName);
|
2012-03-11 00:48:16 -08:00
|
|
|
bool hasAttr = GetAttr(nsid, name, aReturn);
|
|
|
|
if (!hasAttr) {
|
|
|
|
SetDOMStringToNull(aReturn);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetAttributeNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aQualifiedName,
|
|
|
|
const nsAString& aValue,
|
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-03-28 22:43:09 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni;
|
2012-10-16 04:51:00 -07:00
|
|
|
aError =
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::GetNodeInfoFromQName(aNamespaceURI, aQualifiedName,
|
|
|
|
mNodeInfo->NodeInfoManager(),
|
2011-06-14 00:56:49 -07:00
|
|
|
nsIDOMNode::ATTRIBUTE_NODE,
|
2007-03-22 10:30:00 -07:00
|
|
|
getter_AddRefs(ni));
|
2012-10-16 04:51:00 -07:00
|
|
|
if (aError.Failed()) {
|
|
|
|
return;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = SetAttr(ni->NamespaceID(), ni->NameAtom(), ni->GetPrefixAtom(),
|
|
|
|
aValue, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::RemoveAttributeNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIAtom> name = do_GetAtom(aLocalName);
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t nsid =
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
|
|
|
|
|
|
|
if (nsid == kNameSpaceID_Unknown) {
|
2012-03-04 15:38:03 -08:00
|
|
|
// If the namespace ID is unknown, it means there can't possibly be an
|
|
|
|
// existing attribute. We would need a known namespace ID to pass into
|
|
|
|
// UnsetAttr, so we return early if we don't have one.
|
2012-10-16 04:51:00 -07:00
|
|
|
return;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = UnsetAttr(nsid, name, true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
Attr*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttributeNodeNS(const nsAString& aNamespaceURI,
|
2013-04-04 05:01:11 -07:00
|
|
|
const nsAString& aLocalName)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-18 04:19:44 -07:00
|
|
|
OwnerDoc()->WarnOnceAbout(nsIDocument::eGetAttributeNodeNS);
|
2011-06-23 01:30:48 -07:00
|
|
|
|
2013-04-04 05:01:11 -07:00
|
|
|
return GetAttributeNodeNSInternal(aNamespaceURI, aLocalName);
|
2012-02-27 15:57:28 -08:00
|
|
|
}
|
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
Attr*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttributeNodeNSInternal(const nsAString& aNamespaceURI,
|
2013-04-04 05:01:11 -07:00
|
|
|
const nsAString& aLocalName)
|
2012-02-27 15:57:28 -08:00
|
|
|
{
|
2013-04-04 05:01:11 -07:00
|
|
|
return Attributes()->GetNamedItemNS(aNamespaceURI, aLocalName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-04-09 08:29:47 -07:00
|
|
|
already_AddRefed<Attr>
|
|
|
|
Element::SetAttributeNodeNS(Attr& aNewAttr,
|
2012-11-14 14:10:08 -08:00
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-18 04:19:44 -07:00
|
|
|
OwnerDoc()->WarnOnceAbout(nsIDocument::eSetAttributeNodeNS);
|
2013-04-25 23:48:23 -07:00
|
|
|
return Attributes()->SetNamedItemNS(aNewAttr, aError);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsIHTMLCollection>
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByTagNameNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName,
|
|
|
|
ErrorResult& aError)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t nameSpaceId = kNameSpaceID_Wildcard;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (!aNamespaceURI.EqualsLiteral("*")) {
|
2012-10-16 04:51:00 -07:00
|
|
|
aError =
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::NameSpaceManager()->RegisterNameSpace(aNamespaceURI,
|
|
|
|
nameSpaceId);
|
2012-10-16 04:51:00 -07:00
|
|
|
if (aError.Failed()) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-11-23 11:10:56 -08:00
|
|
|
NS_ASSERTION(nameSpaceId != kNameSpaceID_Unknown, "Unexpected namespace ID!");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return NS_GetContentList(this, nameSpaceId, aLocalName);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByTagNameNS(const nsAString& namespaceURI,
|
|
|
|
const nsAString& localName,
|
|
|
|
nsIDOMHTMLCollection** aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-10-16 04:51:00 -07:00
|
|
|
mozilla::ErrorResult rv;
|
|
|
|
nsCOMPtr<nsIHTMLCollection> list =
|
|
|
|
GetElementsByTagNameNS(namespaceURI, localName, rv);
|
|
|
|
if (rv.Failed()) {
|
|
|
|
return rv.ErrorCode();
|
|
|
|
}
|
|
|
|
list.forget(aResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::HasAttributeNS(const nsAString& aNamespaceURI,
|
|
|
|
const nsAString& aLocalName) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t nsid =
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceID(aNamespaceURI);
|
|
|
|
|
|
|
|
if (nsid == kNameSpaceID_Unknown) {
|
|
|
|
// Unknown namespace means no attr...
|
2012-10-16 04:51:00 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAtom> name = do_GetAtom(aLocalName);
|
2012-10-16 04:51:00 -07:00
|
|
|
return HasAttr(nsid, name);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
already_AddRefed<nsIHTMLCollection>
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByClassName(const nsAString& aClassNames)
|
2012-10-16 04:51:00 -07:00
|
|
|
{
|
|
|
|
return nsContentUtils::GetElementsByClassName(this, aClassNames);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetElementsByClassName(const nsAString& aClassNames,
|
|
|
|
nsIDOMHTMLCollection** aResult)
|
2012-10-16 04:51:00 -07:00
|
|
|
{
|
|
|
|
*aResult = nsContentUtils::GetElementsByClassName(this, aClassNames).get();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::BindToTree(nsIDocument* aDocument, nsIContent* aParent,
|
|
|
|
nsIContent* aBindingParent,
|
|
|
|
bool aCompileEventHandlers)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aParent || aDocument, "Must have document if no parent!");
|
|
|
|
NS_PRECONDITION(HasSameOwnerDoc(NODE_FROM(aParent, aDocument)),
|
|
|
|
"Must have the same owner document");
|
2007-05-15 18:13:47 -07:00
|
|
|
NS_PRECONDITION(!aParent || aDocument == aParent->GetCurrentDoc(),
|
2007-03-22 10:30:00 -07:00
|
|
|
"aDocument must be current doc of aParent");
|
|
|
|
NS_PRECONDITION(!GetCurrentDoc(), "Already have a document. Unbind first!");
|
|
|
|
// Note that as we recurse into the kids, they'll have a non-null parent. So
|
|
|
|
// only assert if our parent is _changing_ while we have a parent.
|
|
|
|
NS_PRECONDITION(!GetParent() || aParent == GetParent(),
|
|
|
|
"Already have a parent. Unbind first!");
|
|
|
|
NS_PRECONDITION(!GetBindingParent() ||
|
|
|
|
aBindingParent == GetBindingParent() ||
|
|
|
|
(!aBindingParent && aParent &&
|
|
|
|
aParent->GetBindingParent() == GetBindingParent()),
|
|
|
|
"Already have a binding parent. Unbind first!");
|
2007-05-21 15:26:48 -07:00
|
|
|
NS_PRECONDITION(!aParent || !aDocument ||
|
|
|
|
!aParent->HasFlag(NODE_FORCE_XBL_BINDINGS),
|
|
|
|
"Parent in document but flagged as forcing XBL");
|
2008-07-22 21:50:20 -07:00
|
|
|
NS_PRECONDITION(aBindingParent != this,
|
|
|
|
"Content must not be its own binding parent");
|
|
|
|
NS_PRECONDITION(!IsRootOfNativeAnonymousSubtree() ||
|
|
|
|
aBindingParent == aParent,
|
|
|
|
"Native anonymous content must have its parent as its "
|
2008-02-26 04:40:18 -08:00
|
|
|
"own binding parent");
|
2012-03-21 21:10:51 -07:00
|
|
|
NS_PRECONDITION(aBindingParent || !aParent ||
|
|
|
|
aBindingParent == aParent->GetBindingParent(),
|
|
|
|
"We should be passed the right binding parent");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-08 17:58:15 -07:00
|
|
|
#ifdef MOZ_XUL
|
2007-03-22 10:30:00 -07:00
|
|
|
// First set the binding parent
|
2007-05-15 18:13:47 -07:00
|
|
|
nsXULElement* xulElem = nsXULElement::FromContent(this);
|
|
|
|
if (xulElem) {
|
|
|
|
xulElem->SetXULBindingParent(aBindingParent);
|
|
|
|
}
|
2007-07-08 17:58:15 -07:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2007-05-15 18:13:47 -07:00
|
|
|
if (aBindingParent) {
|
2010-12-21 17:04:00 -08:00
|
|
|
nsDOMSlots *slots = DOMSlots();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-05-15 18:13:47 -07:00
|
|
|
slots->mBindingParent = aBindingParent; // Weak, so no addref happens.
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-07-22 21:50:20 -07:00
|
|
|
NS_ASSERTION(!aBindingParent || IsRootOfNativeAnonymousSubtree() ||
|
2008-04-11 15:44:48 -07:00
|
|
|
!HasFlag(NODE_IS_IN_ANONYMOUS_SUBTREE) ||
|
2008-12-03 02:18:57 -08:00
|
|
|
(aParent && aParent->IsInNativeAnonymousSubtree()),
|
2008-10-22 17:55:04 -07:00
|
|
|
"Trying to re-bind content from native anonymous subtree to "
|
2008-04-11 15:44:48 -07:00
|
|
|
"non-native anonymous parent!");
|
2012-10-10 12:04:42 -07:00
|
|
|
if (aParent) {
|
|
|
|
if (aParent->IsInNativeAnonymousSubtree()) {
|
|
|
|
SetFlags(NODE_IS_IN_ANONYMOUS_SUBTREE);
|
|
|
|
}
|
|
|
|
if (aParent->HasFlag(NODE_CHROME_ONLY_ACCESS)) {
|
|
|
|
SetFlags(NODE_CHROME_ONLY_ACCESS);
|
|
|
|
}
|
2008-04-11 15:44:48 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hadForceXBL = HasFlag(NODE_FORCE_XBL_BINDINGS);
|
2007-05-21 15:26:48 -07:00
|
|
|
|
2007-05-15 18:13:47 -07:00
|
|
|
// Now set the parent and set the "Force attach xbl" flag if needed.
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aParent) {
|
2011-07-26 04:11:14 -07:00
|
|
|
if (!GetParent()) {
|
|
|
|
NS_ADDREF(aParent);
|
|
|
|
}
|
2011-04-07 19:29:49 -07:00
|
|
|
mParent = aParent;
|
2007-05-15 18:13:47 -07:00
|
|
|
|
|
|
|
if (aParent->HasFlag(NODE_FORCE_XBL_BINDINGS)) {
|
|
|
|
SetFlags(NODE_FORCE_XBL_BINDINGS);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
2011-04-07 19:29:49 -07:00
|
|
|
mParent = aDocument;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-04-07 19:29:49 -07:00
|
|
|
SetParentIsContent(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// XXXbz sXBL/XBL2 issue!
|
|
|
|
|
|
|
|
// Finally, set the document
|
|
|
|
if (aDocument) {
|
|
|
|
// Notify XBL- & nsIAnonymousContentCreator-generated
|
|
|
|
// anonymous content that the document is changing.
|
|
|
|
// XXXbz ordering issues here? Probably not, since ChangeDocumentFor is
|
|
|
|
// just pretty broken anyway.... Need to get it working.
|
|
|
|
// XXXbz XBL doesn't handle this (asserts), and we don't really want
|
|
|
|
// to be doing this during parsing anyway... sort this out.
|
2012-07-30 07:20:58 -07:00
|
|
|
// aDocument->BindingManager()->ChangeDocumentFor(this, nullptr,
|
2007-03-22 10:30:00 -07:00
|
|
|
// aDocument);
|
|
|
|
|
2012-03-14 13:14:02 -07:00
|
|
|
// We no longer need to track the subtree pointer (and in fact we'll assert
|
|
|
|
// if we do this any later).
|
|
|
|
ClearSubtreeRootPointer();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Being added to a document.
|
2011-04-07 19:29:49 -07:00
|
|
|
SetInDocument();
|
2007-05-15 18:13:47 -07:00
|
|
|
|
|
|
|
// Unset this flag since we now really are in a document.
|
2010-01-18 01:26:40 -08:00
|
|
|
UnsetFlags(NODE_FORCE_XBL_BINDINGS |
|
|
|
|
// And clear the lazy frame construction bits.
|
2010-06-18 09:23:04 -07:00
|
|
|
NODE_NEEDS_FRAME | NODE_DESCENDANTS_NEED_FRAMES |
|
|
|
|
// And the restyle bits
|
|
|
|
ELEMENT_ALL_RESTYLE_FLAGS);
|
2013-01-08 15:25:47 -08:00
|
|
|
|
|
|
|
// Propagate scoped style sheet tracking bit.
|
|
|
|
SetIsElementInStyleScope(mParent->IsElementInStyleScope());
|
2012-03-14 13:14:02 -07:00
|
|
|
} else {
|
|
|
|
// If we're not in the doc, update our subtree pointer.
|
|
|
|
SetSubtreeRootPointer(aParent->SubtreeRoot());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-01-06 01:45:28 -08:00
|
|
|
// This has to be here, rather than in nsGenericHTMLElement::BindToTree,
|
2012-04-16 21:03:10 -07:00
|
|
|
// because it has to happen after updating the parent pointer, but before
|
|
|
|
// recursively binding the kids.
|
|
|
|
if (IsHTML()) {
|
2013-01-06 01:45:28 -08:00
|
|
|
SetDirOnBind(this, aParent);
|
2012-04-16 21:03:10 -07:00
|
|
|
}
|
|
|
|
|
2007-05-21 15:26:48 -07:00
|
|
|
// If NODE_FORCE_XBL_BINDINGS was set we might have anonymous children
|
|
|
|
// that also need to be told that they are moving.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv;
|
2007-05-21 15:26:48 -07:00
|
|
|
if (hadForceXBL) {
|
2011-10-18 04:19:44 -07:00
|
|
|
nsBindingManager* bmgr = OwnerDoc()->BindingManager();
|
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
nsXBLBinding* contBinding = bmgr->GetBindingWithContent(this);
|
2011-10-18 04:19:44 -07:00
|
|
|
// First check if we have a binding...
|
|
|
|
if (contBinding) {
|
|
|
|
nsCOMPtr<nsIContent> anonRoot = contBinding->GetAnonymousContent();
|
|
|
|
bool allowScripts = contBinding->AllowScripts();
|
|
|
|
for (nsCOMPtr<nsIContent> child = anonRoot->GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
rv = child->BindToTree(aDocument, this, this, allowScripts);
|
2007-05-22 15:41:32 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-05-21 15:26:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
UpdateEditableState(false);
|
2007-06-27 19:48:16 -07:00
|
|
|
|
2007-05-21 15:26:48 -07:00
|
|
|
// Now recurse into our kids
|
2010-07-27 11:39:13 -07:00
|
|
|
for (nsIContent* child = GetFirstChild(); child;
|
|
|
|
child = child->GetNextSibling()) {
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = child->BindToTree(aDocument, this, aBindingParent,
|
|
|
|
aCompileEventHandlers);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsNodeUtils::ParentChainChanged(this);
|
|
|
|
|
2012-03-21 21:10:51 -07:00
|
|
|
if (aDocument && HasID() && !aBindingParent) {
|
|
|
|
aDocument->AddToIdTable(this, DoGetID());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MayHaveStyle() && !IsXUL()) {
|
|
|
|
// XXXbz if we already have a style attr parsed, this won't do
|
|
|
|
// anything... need to fix that.
|
|
|
|
// If MayHaveStyle() is true, we must be an nsStyledElement
|
|
|
|
static_cast<nsStyledElement*>(this)->ReparseStyleAttribute(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aDocument) {
|
|
|
|
// If we're in a document now, let our mapped attrs know what their new
|
|
|
|
// sheet is. This is safe to run for non-mapped-attribute elements too;
|
|
|
|
// it'll just do a small bit of unnecessary work. But most elements in
|
|
|
|
// practice are mapped-attribute elements.
|
|
|
|
nsHTMLStyleSheet* sheet = aDocument->GetAttributeStyleSheet();
|
|
|
|
if (sheet) {
|
|
|
|
mAttrsAndChildren.SetMappedAttrStyleSheet(sheet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// XXXbz script execution during binding can trigger some of these
|
|
|
|
// postcondition asserts.... But we do want that, since things will
|
|
|
|
// generally be quite broken when that happens.
|
|
|
|
NS_POSTCONDITION(aDocument == GetCurrentDoc(), "Bound to wrong document");
|
|
|
|
NS_POSTCONDITION(aParent == GetParent(), "Bound to wrong parent");
|
|
|
|
NS_POSTCONDITION(aBindingParent == GetBindingParent(),
|
|
|
|
"Bound to wrong binding parent");
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-11 15:22:26 -07:00
|
|
|
class RemoveFromBindingManagerRunnable : public nsRunnable {
|
|
|
|
public:
|
|
|
|
RemoveFromBindingManagerRunnable(nsBindingManager* aManager,
|
|
|
|
Element* aElement,
|
2013-05-01 15:50:08 -07:00
|
|
|
nsIDocument* aDoc):
|
|
|
|
mManager(aManager), mElement(aElement), mDoc(aDoc)
|
2012-06-11 15:22:26 -07:00
|
|
|
{}
|
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
2013-05-01 15:50:08 -07:00
|
|
|
mManager->RemovedFromDocumentInternal(mElement, mDoc);
|
2012-06-11 15:22:26 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsRefPtr<nsBindingManager> mManager;
|
|
|
|
nsRefPtr<Element> mElement;
|
|
|
|
nsCOMPtr<nsIDocument> mDoc;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::UnbindFromTree(bool aDeep, bool aNullParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aDeep || (!GetCurrentDoc() && !GetBindingParent()),
|
|
|
|
"Shallow unbind won't clear document and binding parent on "
|
|
|
|
"kids!");
|
2012-03-21 21:10:51 -07:00
|
|
|
|
|
|
|
RemoveFromIdTable();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Make sure to unbind this node before doing the kids
|
2007-09-20 19:05:43 -07:00
|
|
|
nsIDocument *document =
|
2011-10-18 03:53:36 -07:00
|
|
|
HasFlag(NODE_FORCE_XBL_BINDINGS) ? OwnerDoc() : GetCurrentDoc();
|
2009-02-05 01:42:55 -08:00
|
|
|
|
2011-04-07 19:29:49 -07:00
|
|
|
if (aNullParent) {
|
2011-12-06 13:59:39 -08:00
|
|
|
if (IsFullScreenAncestor()) {
|
2011-10-31 22:11:09 -07:00
|
|
|
// The element being removed is an ancestor of the full-screen element,
|
|
|
|
// exit full-screen state.
|
2011-12-15 06:47:03 -08:00
|
|
|
nsContentUtils::ReportToConsole(nsIScriptError::warningFlag,
|
|
|
|
"DOM", OwnerDoc(),
|
|
|
|
nsContentUtils::eDOM_PROPERTIES,
|
|
|
|
"RemovedFullScreenElement");
|
2011-12-06 13:59:39 -08:00
|
|
|
// Fully exit full-screen.
|
2013-02-25 21:40:53 -08:00
|
|
|
nsIDocument::ExitFullscreen(OwnerDoc(), /* async */ false);
|
2011-10-31 22:11:09 -07:00
|
|
|
}
|
2012-04-11 14:55:21 -07:00
|
|
|
if (HasPointerLock()) {
|
|
|
|
nsIDocument::UnlockPointer();
|
|
|
|
}
|
2011-07-26 04:11:14 -07:00
|
|
|
if (GetParent()) {
|
|
|
|
NS_RELEASE(mParent);
|
|
|
|
} else {
|
2012-07-30 07:20:58 -07:00
|
|
|
mParent = nullptr;
|
2011-07-26 04:11:14 -07:00
|
|
|
}
|
2011-04-07 19:29:49 -07:00
|
|
|
SetParentIsContent(false);
|
|
|
|
}
|
|
|
|
ClearInDocument();
|
2009-02-05 01:42:55 -08:00
|
|
|
|
2012-03-14 13:14:02 -07:00
|
|
|
// Begin keeping track of our subtree root.
|
|
|
|
SetSubtreeRootPointer(aNullParent ? this : mParent->SubtreeRoot());
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (document) {
|
|
|
|
// Notify XBL- & nsIAnonymousContentCreator-generated
|
|
|
|
// anonymous content that the document is changing.
|
2012-06-11 15:22:26 -07:00
|
|
|
if (HasFlag(NODE_MAY_BE_IN_BINDING_MNGR)) {
|
|
|
|
nsContentUtils::AddScriptRunner(
|
|
|
|
new RemoveFromBindingManagerRunnable(document->BindingManager(), this,
|
2013-05-01 15:50:08 -07:00
|
|
|
document));
|
2012-06-11 15:22:26 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-18 14:52:19 -08:00
|
|
|
document->ClearBoxObjectFor(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2009-10-07 20:22:42 -07:00
|
|
|
// Ensure that CSS transitions don't continue on an element at a
|
|
|
|
// different place in the tree (even if reinserted before next
|
|
|
|
// animation refresh).
|
2009-10-15 17:23:19 -07:00
|
|
|
// FIXME (Bug 522599): Need a test for this.
|
2009-10-07 20:22:42 -07:00
|
|
|
if (HasFlag(NODE_HAS_PROPERTIES)) {
|
|
|
|
DeleteProperty(nsGkAtoms::transitionsOfBeforeProperty);
|
|
|
|
DeleteProperty(nsGkAtoms::transitionsOfAfterProperty);
|
|
|
|
DeleteProperty(nsGkAtoms::transitionsProperty);
|
2011-04-11 23:18:44 -07:00
|
|
|
DeleteProperty(nsGkAtoms::animationsOfBeforeProperty);
|
|
|
|
DeleteProperty(nsGkAtoms::animationsOfAfterProperty);
|
|
|
|
DeleteProperty(nsGkAtoms::animationsProperty);
|
2009-10-07 20:22:42 -07:00
|
|
|
}
|
|
|
|
|
2007-05-15 18:13:47 -07:00
|
|
|
// Unset this since that's what the old code effectively did.
|
|
|
|
UnsetFlags(NODE_FORCE_XBL_BINDINGS);
|
2012-02-20 04:54:45 -08:00
|
|
|
|
2007-07-08 17:58:15 -07:00
|
|
|
#ifdef MOZ_XUL
|
2007-05-15 18:13:47 -07:00
|
|
|
nsXULElement* xulElem = nsXULElement::FromContent(this);
|
|
|
|
if (xulElem) {
|
2012-07-30 07:20:58 -07:00
|
|
|
xulElem->SetXULBindingParent(nullptr);
|
2007-05-15 18:13:47 -07:00
|
|
|
}
|
2007-07-08 17:58:15 -07:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2007-05-15 18:13:47 -07:00
|
|
|
nsDOMSlots *slots = GetExistingDOMSlots();
|
|
|
|
if (slots) {
|
2012-07-30 07:20:58 -07:00
|
|
|
slots->mBindingParent = nullptr;
|
2007-05-15 18:13:47 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-04-16 21:03:10 -07:00
|
|
|
// This has to be here, rather than in nsGenericHTMLElement::UnbindFromTree,
|
|
|
|
// because it has to happen after unsetting the parent pointer, but before
|
|
|
|
// recursively unbinding the kids.
|
2013-01-06 01:45:28 -08:00
|
|
|
if (IsHTML()) {
|
|
|
|
ResetDir(this);
|
2012-04-16 21:03:10 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aDeep) {
|
2007-05-15 18:13:47 -07:00
|
|
|
// Do the kids. Don't call GetChildCount() here since that'll force
|
|
|
|
// XUL to generate template children, which there is no need for since
|
|
|
|
// all we're going to do is unbind them anyway.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t i, n = mAttrsAndChildren.ChildCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
for (i = 0; i < n; ++i) {
|
2011-10-17 07:59:28 -07:00
|
|
|
// Note that we pass false for aNullParent here, since we don't want
|
2007-03-22 10:30:00 -07:00
|
|
|
// the kids to forget us. We _do_ want them to forget their binding
|
|
|
|
// parent, though, since this only walks non-anonymous kids.
|
2011-10-17 07:59:28 -07:00
|
|
|
mAttrsAndChildren.ChildAt(i)->UnbindFromTree(true, false);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsNodeUtils::ParentChainChanged(this);
|
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
nsICSSDeclaration*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetSMILOverrideStyle()
|
2010-02-11 09:34:01 -08:00
|
|
|
{
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::nsDOMSlots *slots = DOMSlots();
|
2010-02-11 09:34:01 -08:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
if (!slots->mSMILOverrideStyle) {
|
|
|
|
slots->mSMILOverrideStyle = new nsDOMCSSAttributeDeclaration(this, true);
|
2010-02-11 09:34:01 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
return slots->mSMILOverrideStyle;
|
2010-02-11 09:34:01 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
css::StyleRule*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetSMILOverrideStyleRule()
|
2008-03-12 03:26:12 -07:00
|
|
|
{
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::nsDOMSlots *slots = GetExistingDOMSlots();
|
2012-07-31 08:36:21 -07:00
|
|
|
return slots ? slots->mSMILOverrideStyleRule.get() : nullptr;
|
2008-03-12 03:26:12 -07:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetSMILOverrideStyleRule(css::StyleRule* aStyleRule,
|
2012-07-31 08:36:21 -07:00
|
|
|
bool aNotify)
|
2009-09-02 17:28:37 -07:00
|
|
|
{
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::nsDOMSlots *slots = DOMSlots();
|
2009-09-02 17:28:37 -07:00
|
|
|
|
|
|
|
slots->mSMILOverrideStyleRule = aStyleRule;
|
|
|
|
|
|
|
|
if (aNotify) {
|
|
|
|
nsIDocument* doc = GetCurrentDoc();
|
2010-03-11 22:03:49 -08:00
|
|
|
// Only need to request a restyle if we're in a document. (We might not
|
2009-10-20 09:54:47 -07:00
|
|
|
// be in a document, if we're clearing animation effects on a target node
|
|
|
|
// that's been detached since the previous animation sample.)
|
|
|
|
if (doc) {
|
2010-06-25 06:59:57 -07:00
|
|
|
nsCOMPtr<nsIPresShell> shell = doc->GetShell();
|
2010-01-07 02:36:11 -08:00
|
|
|
if (shell) {
|
2010-06-30 18:54:29 -07:00
|
|
|
shell->RestyleForAnimation(this, eRestyle_Self);
|
2009-10-20 09:54:47 -07:00
|
|
|
}
|
2009-09-02 17:28:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-06-07 11:41:23 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::IsLabelable() const
|
2012-06-07 11:41:23 -07:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-10 18:48:57 -08:00
|
|
|
css::StyleRule*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetInlineStyleRule()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-04-14 06:09:19 -07:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetInlineStyleRule(css::StyleRule* aStyleRule,
|
|
|
|
const nsAString* aSerialized,
|
|
|
|
bool aNotify)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-11-14 14:10:08 -08:00
|
|
|
NS_NOTYETIMPLEMENTED("Element::SetInlineStyleRule");
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
NS_IMETHODIMP_(bool)
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::IsAttributeMapped(const nsIAtom* aAttribute) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsChangeHint
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttributeChangeHint(const nsIAtom* aAttribute,
|
|
|
|
int32_t aModType) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return nsChangeHint(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom *
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetClassAttributeName() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::FindAttributeDependence(const nsIAtom* aAttribute,
|
|
|
|
const MappedAttributeEntry* const aMaps[],
|
|
|
|
uint32_t aMapCount)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
for (uint32_t mapindex = 0; mapindex < aMapCount; ++mapindex) {
|
2012-07-31 08:36:21 -07:00
|
|
|
for (const MappedAttributeEntry* map = aMaps[mapindex];
|
|
|
|
map->attribute; ++map) {
|
|
|
|
if (aAttribute == *map->attribute) {
|
|
|
|
return true;
|
2012-06-27 15:09:15 -07:00
|
|
|
}
|
|
|
|
}
|
2012-02-10 17:21:26 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
return false;
|
|
|
|
}
|
2012-01-30 12:08:13 -08:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
already_AddRefed<nsINodeInfo>
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetExistingAttrNameFromQName(const nsAString& aStr) const
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
|
|
|
const nsAttrName* name = InternalGetExistingAttrNameFromQName(aStr);
|
|
|
|
if (!name) {
|
|
|
|
return nullptr;
|
2012-01-30 12:08:13 -08:00
|
|
|
}
|
|
|
|
|
2013-04-22 04:15:59 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> nodeInfo;
|
2012-07-31 08:36:21 -07:00
|
|
|
if (name->IsAtom()) {
|
|
|
|
nodeInfo = mNodeInfo->NodeInfoManager()->
|
|
|
|
GetNodeInfo(name->Atom(), nullptr, kNameSpaceID_None,
|
2013-04-22 04:15:59 -07:00
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
2012-01-30 12:08:13 -08:00
|
|
|
}
|
2012-07-31 08:36:21 -07:00
|
|
|
else {
|
2013-04-22 04:15:59 -07:00
|
|
|
nodeInfo = name->NodeInfo();
|
2012-07-31 08:36:21 -07:00
|
|
|
}
|
|
|
|
|
2013-04-22 04:15:59 -07:00
|
|
|
return nodeInfo.forget();
|
2012-01-30 12:08:13 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
// static
|
2012-01-30 12:08:13 -08:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ShouldBlur(nsIContent *aContent)
|
2012-01-30 12:08:13 -08:00
|
|
|
{
|
2012-07-31 08:36:21 -07:00
|
|
|
// Determine if the current element is focused, if it is not focused
|
|
|
|
// then we should not try to blur
|
|
|
|
nsIDocument *document = aContent->GetDocument();
|
|
|
|
if (!document)
|
2012-01-30 12:08:13 -08:00
|
|
|
return false;
|
2012-07-31 08:36:21 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> window = do_QueryInterface(document->GetWindow());
|
|
|
|
if (!window)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
nsCOMPtr<nsPIDOMWindow> focusedFrame;
|
|
|
|
nsIContent* contentToBlur =
|
|
|
|
nsFocusManager::GetFocusedDescendant(window, false, getter_AddRefs(focusedFrame));
|
|
|
|
if (contentToBlur == aContent)
|
2012-01-30 12:08:13 -08:00
|
|
|
return true;
|
2012-07-31 08:36:21 -07:00
|
|
|
|
|
|
|
// if focus on this element would get redirected, then check the redirected
|
|
|
|
// content as well when blurring.
|
|
|
|
return (contentToBlur && nsFocusManager::GetRedirectedFocus(aContent) == contentToBlur);
|
2012-01-30 12:08:13 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::IsNodeOfType(uint32_t aFlags) const
|
2012-01-30 12:08:13 -08:00
|
|
|
{
|
2012-07-31 08:36:21 -07:00
|
|
|
return !(aFlags & ~eCONTENT);
|
2012-01-30 12:08:13 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
/* static */
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::DispatchEvent(nsPresContext* aPresContext,
|
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIContent* aTarget,
|
|
|
|
bool aFullDispatch,
|
|
|
|
nsEventStatus* aStatus)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aTarget, "Must have target");
|
|
|
|
NS_PRECONDITION(aEvent, "Must have source event");
|
|
|
|
NS_PRECONDITION(aStatus, "Null out param?");
|
2012-02-11 03:03:54 -08:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
if (!aPresContext) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2012-02-11 03:03:54 -08:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
nsCOMPtr<nsIPresShell> shell = aPresContext->GetPresShell();
|
|
|
|
if (!shell) {
|
|
|
|
return NS_OK;
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
2012-07-31 08:36:21 -07:00
|
|
|
|
|
|
|
if (aFullDispatch) {
|
|
|
|
return shell->HandleEventWithTarget(aEvent, nullptr, aTarget, aStatus);
|
2009-02-27 06:48:26 -08:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
return shell->HandleDOMEventWithTarget(aTarget, aEvent, aStatus);
|
|
|
|
}
|
2009-05-12 13:20:42 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
/* static */
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::DispatchClickEvent(nsPresContext* aPresContext,
|
|
|
|
nsInputEvent* aSourceEvent,
|
|
|
|
nsIContent* aTarget,
|
|
|
|
bool aFullDispatch,
|
2012-12-15 17:26:04 -08:00
|
|
|
const widget::EventFlags* aExtraEventFlags,
|
2012-11-14 14:10:08 -08:00
|
|
|
nsEventStatus* aStatus)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aTarget, "Must have target");
|
|
|
|
NS_PRECONDITION(aSourceEvent, "Must have source event");
|
|
|
|
NS_PRECONDITION(aStatus, "Null out param?");
|
2007-05-10 13:21:12 -07:00
|
|
|
|
2012-12-15 17:26:03 -08:00
|
|
|
nsMouseEvent event(aSourceEvent->mFlags.mIsTrusted, NS_MOUSE_CLICK,
|
2012-07-31 08:36:21 -07:00
|
|
|
aSourceEvent->widget, nsMouseEvent::eReal);
|
|
|
|
event.refPoint = aSourceEvent->refPoint;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t clickCount = 1;
|
2012-07-31 08:36:21 -07:00
|
|
|
float pressure = 0;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint16_t inputSource = 0;
|
2012-07-31 08:36:21 -07:00
|
|
|
if (aSourceEvent->eventStructType == NS_MOUSE_EVENT) {
|
|
|
|
clickCount = static_cast<nsMouseEvent*>(aSourceEvent)->clickCount;
|
|
|
|
pressure = static_cast<nsMouseEvent*>(aSourceEvent)->pressure;
|
|
|
|
inputSource = static_cast<nsMouseEvent*>(aSourceEvent)->inputSource;
|
|
|
|
} else if (aSourceEvent->eventStructType == NS_KEY_EVENT) {
|
|
|
|
inputSource = nsIDOMMouseEvent::MOZ_SOURCE_KEYBOARD;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-07-31 08:36:21 -07:00
|
|
|
event.pressure = pressure;
|
|
|
|
event.clickCount = clickCount;
|
|
|
|
event.inputSource = inputSource;
|
|
|
|
event.modifiers = aSourceEvent->modifiers;
|
2012-12-15 17:26:04 -08:00
|
|
|
if (aExtraEventFlags) {
|
|
|
|
// Be careful not to overwrite existing flags!
|
2012-12-28 06:13:18 -08:00
|
|
|
event.mFlags.Union(*aExtraEventFlags);
|
2012-12-15 17:26:04 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
return DispatchEvent(aPresContext, &event, aTarget, aFullDispatch, aStatus);
|
|
|
|
}
|
2008-03-28 07:09:00 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
nsIFrame*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetPrimaryFrame(mozFlushType aType)
|
2012-07-31 08:36:21 -07:00
|
|
|
{
|
|
|
|
nsIDocument* doc = GetCurrentDoc();
|
|
|
|
if (!doc) {
|
|
|
|
return nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
// Cause a flush, so we get up-to-date frame
|
|
|
|
// information
|
|
|
|
doc->FlushPendingNotifications(aType);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-07-31 08:36:21 -07:00
|
|
|
return GetPrimaryFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::LeaveLink(nsPresContext* aPresContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsILinkHandler *handler = aPresContext->GetLinkHandler();
|
|
|
|
if (!handler) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handler->OnLeaveLink();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetEventHandler(nsIAtom* aEventName,
|
|
|
|
const nsAString& aValue,
|
|
|
|
bool aDefer)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-18 03:53:36 -07:00
|
|
|
nsIDocument *ownerDoc = OwnerDoc();
|
2011-10-18 04:19:44 -07:00
|
|
|
if (ownerDoc->IsLoadedAsData()) {
|
2007-07-26 19:49:18 -07:00
|
|
|
// Make this a no-op rather than throwing an error to avoid
|
|
|
|
// the error causing problems setting the attribute.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_PRECONDITION(aEventName, "Must have event name!");
|
2011-09-28 23:19:26 -07:00
|
|
|
bool defer = true;
|
2011-09-28 08:54:50 -07:00
|
|
|
nsEventListenerManager* manager = GetEventListenerManagerForAttr(aEventName,
|
|
|
|
&defer);
|
2009-09-16 02:09:12 -07:00
|
|
|
if (!manager) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-06-23 04:23:52 -07:00
|
|
|
defer = defer && aDefer; // only defer if everyone agrees...
|
2012-08-30 09:25:10 -07:00
|
|
|
manager->SetEventHandler(aEventName, aValue,
|
|
|
|
nsIProgrammingLanguage::JAVASCRIPT,
|
|
|
|
defer, !nsContentUtils::IsChromeDoc(ownerDoc));
|
2011-06-23 19:18:02 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
const nsAttrName*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::InternalGetExistingAttrNameFromQName(const nsAString& aStr) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-03-08 07:45:00 -08:00
|
|
|
return mAttrsAndChildren.GetExistingAttrNameFromQName(aStr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::MaybeCheckSameAttrVal(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix,
|
|
|
|
const nsAttrValueOrString& aValue,
|
|
|
|
bool aNotify,
|
|
|
|
nsAttrValue& aOldValue,
|
|
|
|
uint8_t* aModType,
|
|
|
|
bool* aHasListeners)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool modification = false;
|
2011-02-01 11:41:50 -08:00
|
|
|
*aHasListeners = aNotify &&
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::HasMutationListeners(this,
|
2007-07-04 13:39:10 -07:00
|
|
|
NS_EVENT_BITS_MUTATION_ATTRMODIFIED,
|
|
|
|
this);
|
2011-02-01 11:41:50 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// If we have no listeners and aNotify is false, we are almost certainly
|
|
|
|
// coming from the content sink and will almost certainly have no previous
|
|
|
|
// value. Even if we do, setting the value is cheap when we have no
|
|
|
|
// listeners and don't plan to notify. The check for aNotify here is an
|
2011-02-01 11:41:50 -08:00
|
|
|
// optimization, the check for *aHasListeners is a correctness issue.
|
|
|
|
if (*aHasListeners || aNotify) {
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAttrInfo info(GetAttrInfo(aNamespaceID, aName));
|
|
|
|
if (info.mValue) {
|
|
|
|
// Check whether the old value is the same as the new one. Note that we
|
|
|
|
// only need to actually _get_ the old value if we have listeners.
|
2011-02-01 11:41:50 -08:00
|
|
|
if (*aHasListeners) {
|
2012-02-13 18:00:56 -08:00
|
|
|
// Need to store the old value.
|
|
|
|
//
|
|
|
|
// If the current attribute value contains a pointer to some other data
|
|
|
|
// structure that gets updated in the process of setting the attribute
|
|
|
|
// we'll no longer have the old value of the attribute. Therefore, we
|
|
|
|
// should serialize the attribute value now to keep a snapshot.
|
|
|
|
//
|
|
|
|
// We have to serialize the value anyway in order to create the
|
|
|
|
// mutation event so there's no cost in doing it now.
|
|
|
|
aOldValue.SetToSerialized(*info.mValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2012-02-13 18:00:56 -08:00
|
|
|
bool valueMatches = aValue.EqualsAsStrings(*info.mValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (valueMatches && aPrefix == info.mName->GetPrefix()) {
|
2012-08-15 03:06:01 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
modification = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
2011-02-01 11:41:50 -08:00
|
|
|
*aModType = modification ?
|
2012-08-22 08:56:38 -07:00
|
|
|
static_cast<uint8_t>(nsIDOMMutationEvent::MODIFICATION) :
|
|
|
|
static_cast<uint8_t>(nsIDOMMutationEvent::ADDITION);
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2011-02-01 11:41:50 -08:00
|
|
|
}
|
|
|
|
|
2013-01-31 15:11:49 -08:00
|
|
|
bool
|
|
|
|
Element::OnlyNotifySameValueSet(int32_t aNamespaceID, nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix,
|
|
|
|
const nsAttrValueOrString& aValue,
|
|
|
|
bool aNotify, nsAttrValue& aOldValue,
|
|
|
|
uint8_t* aModType, bool* aHasListeners)
|
|
|
|
{
|
|
|
|
if (!MaybeCheckSameAttrVal(aNamespaceID, aName, aPrefix, aValue, aNotify,
|
|
|
|
aOldValue, aModType, aHasListeners)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
|
|
|
nsNodeUtils::AttributeSetToCurrentValue(this, aNamespaceID, aName);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-02-01 11:41:50 -08:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetAttr(int32_t aNamespaceID, nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix, const nsAString& aValue,
|
|
|
|
bool aNotify)
|
2011-02-01 11:41:50 -08:00
|
|
|
{
|
|
|
|
// Keep this in sync with SetParsedAttr below
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aName);
|
|
|
|
NS_ASSERTION(aNamespaceID != kNameSpaceID_Unknown,
|
|
|
|
"Don't call SetAttr with unknown namespace");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-02-01 11:41:50 -08:00
|
|
|
if (!mAttrsAndChildren.CanFitMoreAttrs()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t modType;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasListeners;
|
2012-02-13 18:00:56 -08:00
|
|
|
nsAttrValueOrString value(aValue);
|
|
|
|
nsAttrValue oldValue;
|
2011-02-01 11:41:50 -08:00
|
|
|
|
2012-08-15 03:06:01 -07:00
|
|
|
if (OnlyNotifySameValueSet(aNamespaceID, aName, aPrefix, value, aNotify,
|
|
|
|
oldValue, &modType, &hasListeners)) {
|
2011-02-01 11:41:50 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2010-02-23 20:37:47 -08:00
|
|
|
|
2012-02-13 18:00:56 -08:00
|
|
|
nsresult rv = BeforeSetAttr(aNamespaceID, aName, &value, aNotify);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2011-02-01 11:41:50 -08:00
|
|
|
|
2010-02-23 20:37:47 -08:00
|
|
|
if (aNotify) {
|
|
|
|
nsNodeUtils::AttributeWillChange(this, aNamespaceID, aName, modType);
|
|
|
|
}
|
|
|
|
|
2011-03-01 21:33:56 -08:00
|
|
|
// Hold a script blocker while calling ParseAttribute since that can call
|
|
|
|
// out to id-observers
|
2011-05-25 10:58:23 -07:00
|
|
|
nsAutoScriptBlocker scriptBlocker;
|
2011-03-01 21:33:56 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAttrValue attrValue;
|
|
|
|
if (!ParseAttribute(aNamespaceID, aName, aValue, attrValue)) {
|
|
|
|
attrValue.SetTo(aValue);
|
|
|
|
}
|
|
|
|
|
2011-03-02 06:36:19 -08:00
|
|
|
return SetAttrAndNotify(aNamespaceID, aName, aPrefix, oldValue,
|
|
|
|
attrValue, modType, hasListeners, aNotify,
|
2012-02-13 18:00:56 -08:00
|
|
|
kCallAfterSetAttr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-02-01 11:41:50 -08:00
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetParsedAttr(int32_t aNamespaceID, nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix, nsAttrValue& aParsedValue,
|
|
|
|
bool aNotify)
|
2011-02-01 11:41:50 -08:00
|
|
|
{
|
|
|
|
// Keep this in sync with SetAttr above
|
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aName);
|
|
|
|
NS_ASSERTION(aNamespaceID != kNameSpaceID_Unknown,
|
|
|
|
"Don't call SetAttr with unknown namespace");
|
|
|
|
|
|
|
|
if (!mAttrsAndChildren.CanFitMoreAttrs()) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint8_t modType;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasListeners;
|
2012-02-13 18:00:56 -08:00
|
|
|
nsAttrValueOrString value(aParsedValue);
|
|
|
|
nsAttrValue oldValue;
|
2011-02-01 11:41:50 -08:00
|
|
|
|
2012-08-15 03:06:01 -07:00
|
|
|
if (OnlyNotifySameValueSet(aNamespaceID, aName, aPrefix, value, aNotify,
|
|
|
|
oldValue, &modType, &hasListeners)) {
|
2011-02-01 11:41:50 -08:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-13 18:00:56 -08:00
|
|
|
nsresult rv = BeforeSetAttr(aNamespaceID, aName, &value, aNotify);
|
2011-02-01 11:41:50 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aNotify) {
|
|
|
|
nsNodeUtils::AttributeWillChange(this, aNamespaceID, aName, modType);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SetAttrAndNotify(aNamespaceID, aName, aPrefix, oldValue,
|
|
|
|
aParsedValue, modType, hasListeners, aNotify,
|
2012-02-13 18:00:56 -08:00
|
|
|
kCallAfterSetAttr);
|
2011-02-01 11:41:50 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetAttrAndNotify(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aName,
|
|
|
|
nsIAtom* aPrefix,
|
|
|
|
const nsAttrValue& aOldValue,
|
|
|
|
nsAttrValue& aParsedValue,
|
|
|
|
uint8_t aModType,
|
|
|
|
bool aFireMutation,
|
|
|
|
bool aNotify,
|
|
|
|
bool aCallAfterSetAttr)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsIDocument* document = GetCurrentDoc();
|
|
|
|
mozAutoDocUpdate updateBatch(document, UPDATE_CONTENT_MODEL, aNotify);
|
2007-07-12 13:05:45 -07:00
|
|
|
|
2010-09-01 15:48:24 -07:00
|
|
|
nsMutationGuard::DidMutate();
|
|
|
|
|
2012-02-13 18:00:56 -08:00
|
|
|
// Copy aParsedValue for later use since it will be lost when we call
|
|
|
|
// SetAndTakeMappedAttr below
|
|
|
|
nsAttrValue aValueForAfterSetAttr;
|
|
|
|
if (aCallAfterSetAttr) {
|
|
|
|
aValueForAfterSetAttr.SetTo(aParsedValue);
|
|
|
|
}
|
|
|
|
|
2012-11-21 02:13:57 -08:00
|
|
|
bool hadValidDir = false;
|
2013-03-07 12:53:08 -08:00
|
|
|
bool hadDirAuto = false;
|
2012-11-21 02:13:57 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aNamespaceID == kNameSpaceID_None) {
|
2012-11-21 02:13:57 -08:00
|
|
|
if (aName == nsGkAtoms::dir) {
|
2013-01-13 08:08:59 -08:00
|
|
|
hadValidDir = HasValidDir() || IsHTML(nsGkAtoms::bdi);
|
2013-03-07 12:53:08 -08:00
|
|
|
hadDirAuto = HasDirAuto(); // already takes bdi into account
|
2012-11-21 02:13:57 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// XXXbz Perhaps we should push up the attribute mapping function
|
2012-11-14 14:10:08 -08:00
|
|
|
// stuff to Element?
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!IsAttributeMapped(aName) ||
|
|
|
|
!SetMappedAttribute(document, aName, aParsedValue, &rv)) {
|
|
|
|
rv = mAttrsAndChildren.SetAndTakeAttr(aName, aParsedValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2012-03-28 22:43:09 -07:00
|
|
|
nsCOMPtr<nsINodeInfo> ni;
|
2008-09-12 15:32:18 -07:00
|
|
|
ni = mNodeInfo->NodeInfoManager()->GetNodeInfo(aName, aPrefix,
|
2011-06-14 00:56:49 -07:00
|
|
|
aNamespaceID,
|
|
|
|
nsIDOMNode::ATTRIBUTE_NODE);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
rv = mAttrsAndChildren.SetAndTakeAttr(ni, aParsedValue);
|
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-03-03 17:25:06 -08:00
|
|
|
if (document || HasFlag(NODE_FORCE_XBL_BINDINGS)) {
|
2011-10-18 04:19:44 -07:00
|
|
|
nsRefPtr<nsXBLBinding> binding =
|
|
|
|
OwnerDoc()->BindingManager()->GetBinding(this);
|
|
|
|
if (binding) {
|
|
|
|
binding->AttributeChanged(aName, aNamespaceID, false, aNotify);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-31 18:46:57 -07:00
|
|
|
UpdateState(aNotify);
|
|
|
|
|
2007-07-10 18:14:55 -07:00
|
|
|
if (aNotify) {
|
2010-02-23 20:37:47 -08:00
|
|
|
nsNodeUtils::AttributeChanged(this, aNamespaceID, aName, aModType);
|
2007-07-10 18:14:55 -07:00
|
|
|
}
|
2008-12-03 02:39:21 -08:00
|
|
|
|
2012-02-13 18:00:56 -08:00
|
|
|
if (aCallAfterSetAttr) {
|
|
|
|
rv = AfterSetAttr(aNamespaceID, aName, &aValueForAfterSetAttr, aNotify);
|
2008-12-03 02:39:21 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-11-21 02:13:57 -08:00
|
|
|
|
|
|
|
if (aNamespaceID == kNameSpaceID_None && aName == nsGkAtoms::dir) {
|
2013-03-07 12:53:08 -08:00
|
|
|
OnSetDirAttr(this, &aValueForAfterSetAttr,
|
|
|
|
hadValidDir, hadDirAuto, aNotify);
|
2012-11-21 02:13:57 -08:00
|
|
|
}
|
2008-12-03 02:39:21 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aFireMutation) {
|
2011-10-17 07:59:28 -07:00
|
|
|
nsMutationEvent mutation(true, NS_MUTATION_ATTRMODIFIED);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-18 10:20:11 -07:00
|
|
|
nsAutoString ns;
|
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceURI(aNamespaceID, ns);
|
2013-04-09 08:29:47 -07:00
|
|
|
Attr* attrNode =
|
2013-04-04 05:01:11 -07:00
|
|
|
GetAttributeNodeNSInternal(ns, nsDependentAtomString(aName));
|
2008-04-18 10:20:11 -07:00
|
|
|
mutation.mRelatedNode = attrNode;
|
|
|
|
|
|
|
|
mutation.mAttrName = aName;
|
|
|
|
nsAutoString newValue;
|
|
|
|
GetAttr(aNamespaceID, aName, newValue);
|
|
|
|
if (!newValue.IsEmpty()) {
|
|
|
|
mutation.mNewAttrValue = do_GetAtom(newValue);
|
|
|
|
}
|
2012-02-13 18:00:56 -08:00
|
|
|
if (!aOldValue.IsEmptyString()) {
|
|
|
|
mutation.mPrevAttrValue = aOldValue.GetAsAtom();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2010-02-23 20:37:47 -08:00
|
|
|
mutation.mAttrChange = aModType;
|
2008-04-18 10:20:11 -07:00
|
|
|
|
2011-10-18 03:53:36 -07:00
|
|
|
mozAutoSubtreeModified subtree(OwnerDoc(), this);
|
2011-12-16 22:02:05 -08:00
|
|
|
(new nsAsyncDOMEvent(this, mutation))->RunDOMEventWhenSafe();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ParseAttribute(int32_t aNamespaceID,
|
|
|
|
nsIAtom* aAttribute,
|
|
|
|
const nsAString& aValue,
|
|
|
|
nsAttrValue& aResult)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::SetMappedAttribute(nsIDocument* aDocument,
|
|
|
|
nsIAtom* aName,
|
|
|
|
nsAttrValue& aValue,
|
|
|
|
nsresult* aRetval)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aRetval = NS_OK;
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-07-29 12:37:17 -07:00
|
|
|
nsEventListenerManager*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetEventListenerManagerForAttr(nsIAtom* aAttrName,
|
|
|
|
bool* aDefer)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
*aDefer = true;
|
|
|
|
return GetListenerManager(true);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::nsAttrInfo
|
|
|
|
Element::GetAttrInfo(int32_t aNamespaceID, nsIAtom* aName) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aName, "must have attribute name");
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ASSERTION(aNamespaceID != kNameSpaceID_Unknown,
|
|
|
|
"must have a real namespace ID!");
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t index = mAttrsAndChildren.IndexOfAttr(aName, aNamespaceID);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (index >= 0) {
|
|
|
|
return nsAttrInfo(mAttrsAndChildren.AttrNameAt(index),
|
|
|
|
mAttrsAndChildren.AttrAt(index));
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nsAttrInfo(nullptr, nullptr);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
|
|
|
nsAString& aResult) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2013-01-29 06:42:14 -08:00
|
|
|
DOMString str;
|
|
|
|
bool haveAttr = GetAttr(aNameSpaceID, aName, str);
|
|
|
|
str.ToString(aResult);
|
|
|
|
return haveAttr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::FindAttrValueIn(int32_t aNameSpaceID,
|
|
|
|
nsIAtom* aName,
|
|
|
|
AttrValuesArray* aValues,
|
|
|
|
nsCaseTreatment aCaseSensitive) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aName, "Must have attr name");
|
|
|
|
NS_ASSERTION(aNameSpaceID != kNameSpaceID_Unknown, "Must have namespace");
|
|
|
|
NS_ASSERTION(aValues, "Null value array");
|
|
|
|
|
|
|
|
const nsAttrValue* val = mAttrsAndChildren.GetAttr(aName, aNameSpaceID);
|
|
|
|
if (val) {
|
2012-08-22 08:56:38 -07:00
|
|
|
for (int32_t i = 0; aValues[i]; ++i) {
|
2007-03-22 10:30:00 -07:00
|
|
|
if (val->Equals(*aValues[i], aCaseSensitive)) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ATTR_VALUE_NO_MATCH;
|
|
|
|
}
|
|
|
|
return ATTR_MISSING;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::UnsetAttr(int32_t aNameSpaceID, nsIAtom* aName,
|
|
|
|
bool aNotify)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
NS_ASSERTION(nullptr != aName, "must have attribute name");
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t index = mAttrsAndChildren.IndexOfAttr(aName, aNameSpaceID);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (index < 0) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
nsresult rv = BeforeSetAttr(aNameSpaceID, aName, nullptr, aNotify);
|
2007-12-04 08:50:32 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-02-13 18:00:56 -08:00
|
|
|
|
|
|
|
nsIDocument *document = GetCurrentDoc();
|
2007-03-22 10:30:00 -07:00
|
|
|
mozAutoDocUpdate updateBatch(document, UPDATE_CONTENT_MODEL, aNotify);
|
|
|
|
|
2009-06-29 11:36:25 -07:00
|
|
|
if (aNotify) {
|
|
|
|
nsNodeUtils::AttributeWillChange(this, aNameSpaceID, aName,
|
|
|
|
nsIDOMMutationEvent::REMOVAL);
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool hasMutationListeners = aNotify &&
|
2007-03-22 10:30:00 -07:00
|
|
|
nsContentUtils::HasMutationListeners(this,
|
2007-07-04 13:39:10 -07:00
|
|
|
NS_EVENT_BITS_MUTATION_ATTRMODIFIED,
|
|
|
|
this);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Grab the attr node if needed before we remove it from the attr map
|
2013-04-09 08:29:47 -07:00
|
|
|
nsRefPtr<Attr> attrNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (hasMutationListeners) {
|
|
|
|
nsAutoString ns;
|
|
|
|
nsContentUtils::NameSpaceManager()->GetNameSpaceURI(aNameSpaceID, ns);
|
2013-04-04 05:01:11 -07:00
|
|
|
attrNode = GetAttributeNodeNSInternal(ns, nsDependentAtomString(aName));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-03-10 00:00:33 -08:00
|
|
|
// Clear binding to nsIDOMMozNamedAttrMap
|
2007-03-22 10:30:00 -07:00
|
|
|
nsDOMSlots *slots = GetExistingDOMSlots();
|
|
|
|
if (slots && slots->mAttributeMap) {
|
|
|
|
slots->mAttributeMap->DropAttribute(aNameSpaceID, aName);
|
|
|
|
}
|
|
|
|
|
2010-09-01 15:48:24 -07:00
|
|
|
// The id-handling code, and in the future possibly other code, need to
|
|
|
|
// react to unexpected attribute changes.
|
|
|
|
nsMutationGuard::DidMutate();
|
|
|
|
|
2012-11-21 02:13:57 -08:00
|
|
|
bool hadValidDir = false;
|
2013-03-07 12:53:08 -08:00
|
|
|
bool hadDirAuto = false;
|
2012-11-21 02:13:57 -08:00
|
|
|
|
|
|
|
if (aNameSpaceID == kNameSpaceID_None && aName == nsGkAtoms::dir) {
|
2013-01-13 08:08:59 -08:00
|
|
|
hadValidDir = HasValidDir() || IsHTML(nsGkAtoms::bdi);
|
2013-03-07 12:53:08 -08:00
|
|
|
hadDirAuto = HasDirAuto(); // already takes bdi into account
|
2012-11-21 02:13:57 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsAttrValue oldValue;
|
2007-12-04 08:50:32 -08:00
|
|
|
rv = mAttrsAndChildren.RemoveAttrAt(index, oldValue);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-03-03 17:25:06 -08:00
|
|
|
if (document || HasFlag(NODE_FORCE_XBL_BINDINGS)) {
|
2011-10-18 04:19:44 -07:00
|
|
|
nsRefPtr<nsXBLBinding> binding =
|
|
|
|
OwnerDoc()->BindingManager()->GetBinding(this);
|
|
|
|
if (binding) {
|
|
|
|
binding->AttributeChanged(aName, aNameSpaceID, true, aNotify);
|
2008-03-03 17:25:06 -08:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-05-31 18:46:57 -07:00
|
|
|
UpdateState(aNotify);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aNotify) {
|
|
|
|
nsNodeUtils::AttributeChanged(this, aNameSpaceID, aName,
|
2009-12-10 14:36:04 -08:00
|
|
|
nsIDOMMutationEvent::REMOVAL);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
rv = AfterSetAttr(aNameSpaceID, aName, nullptr, aNotify);
|
2008-12-03 02:39:21 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2012-11-21 02:13:57 -08:00
|
|
|
if (aNameSpaceID == kNameSpaceID_None && aName == nsGkAtoms::dir) {
|
2013-03-07 12:53:08 -08:00
|
|
|
OnSetDirAttr(this, nullptr, hadValidDir, hadDirAuto, aNotify);
|
2012-11-21 02:13:57 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (hasMutationListeners) {
|
2011-10-17 07:59:28 -07:00
|
|
|
nsMutationEvent mutation(true, NS_MUTATION_ATTRMODIFIED);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-18 10:20:11 -07:00
|
|
|
mutation.mRelatedNode = attrNode;
|
|
|
|
mutation.mAttrName = aName;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-04-18 10:20:11 -07:00
|
|
|
nsAutoString value;
|
|
|
|
oldValue.ToString(value);
|
|
|
|
if (!value.IsEmpty())
|
|
|
|
mutation.mPrevAttrValue = do_GetAtom(value);
|
|
|
|
mutation.mAttrChange = nsIDOMMutationEvent::REMOVAL;
|
2008-03-14 16:08:57 -07:00
|
|
|
|
2011-10-18 03:53:36 -07:00
|
|
|
mozAutoSubtreeModified subtree(OwnerDoc(), this);
|
2011-12-16 22:02:05 -08:00
|
|
|
(new nsAsyncDOMEvent(this, mutation))->RunDOMEventWhenSafe();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-12-03 02:39:21 -08:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const nsAttrName*
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttrNameAt(uint32_t aIndex) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mAttrsAndChildren.GetSafeAttrNameAt(aIndex);
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetAttrCount() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mAttrsAndChildren.AttrCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ListAttributes(FILE* out) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t index, count = mAttrsAndChildren.AttrCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
for (index = 0; index < count; index++) {
|
|
|
|
nsAutoString buffer;
|
|
|
|
|
|
|
|
// name
|
|
|
|
mAttrsAndChildren.AttrNameAt(index)->GetQualifiedName(buffer);
|
|
|
|
|
|
|
|
// value
|
|
|
|
buffer.AppendLiteral("=\"");
|
|
|
|
nsAutoString value;
|
|
|
|
mAttrsAndChildren.AttrAt(index)->ToString(value);
|
|
|
|
for (int i = value.Length(); i >= 0; --i) {
|
|
|
|
if (value[i] == PRUnichar('"'))
|
2012-08-22 08:56:38 -07:00
|
|
|
value.Insert(PRUnichar('\\'), uint32_t(i));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
buffer.Append(value);
|
|
|
|
buffer.AppendLiteral("\"");
|
|
|
|
|
|
|
|
fputs(" ", out);
|
|
|
|
fputs(NS_LossyConvertUTF16toASCII(buffer).get(), out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::List(FILE* out, int32_t aIndent,
|
|
|
|
const nsCString& aPrefix) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t indent;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
|
|
|
|
fputs(aPrefix.get(), out);
|
|
|
|
|
2011-05-05 09:26:33 -07:00
|
|
|
fputs(NS_LossyConvertUTF16toASCII(mNodeInfo->QualifiedName()).get(), out);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
fprintf(out, "@%p", (void *)this);
|
|
|
|
|
|
|
|
ListAttributes(out);
|
|
|
|
|
2011-05-31 18:46:57 -07:00
|
|
|
fprintf(out, " state=[%llx]", State().GetInternalValue());
|
2010-05-11 17:30:42 -07:00
|
|
|
fprintf(out, " flags=[%08x]", static_cast<unsigned int>(GetFlags()));
|
2011-12-20 01:15:41 -08:00
|
|
|
if (IsCommonAncestorForRangeInSelection()) {
|
2012-01-10 06:19:54 -08:00
|
|
|
nsRange::RangeHashTable* ranges =
|
|
|
|
static_cast<nsRange::RangeHashTable*>(GetProperty(nsGkAtoms::range));
|
2011-12-20 01:15:41 -08:00
|
|
|
fprintf(out, " ranges:%d", ranges ? ranges->Count() : 0);
|
|
|
|
}
|
2010-05-01 11:42:47 -07:00
|
|
|
fprintf(out, " primaryframe=%p", static_cast<void*>(GetPrimaryFrame()));
|
2007-03-22 10:30:00 -07:00
|
|
|
fprintf(out, " refcount=%d<", mRefCnt.get());
|
|
|
|
|
2011-09-27 00:54:58 -07:00
|
|
|
nsIContent* child = GetFirstChild();
|
|
|
|
if (child) {
|
2007-03-22 10:30:00 -07:00
|
|
|
fputs("\n", out);
|
2011-09-27 00:54:58 -07:00
|
|
|
|
|
|
|
for (; child; child = child->GetNextSibling()) {
|
|
|
|
child->List(out, aIndent + 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
}
|
|
|
|
|
|
|
|
fputs(">\n", out);
|
|
|
|
|
2012-11-14 14:10:08 -08:00
|
|
|
Element* nonConstThis = const_cast<Element*>(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// XXX sXBL/XBL2 issue! Owner or current document?
|
2011-10-18 03:53:36 -07:00
|
|
|
nsIDocument *document = OwnerDoc();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-10-18 04:19:44 -07:00
|
|
|
// Note: not listing nsIAnonymousContentCreator-created content...
|
|
|
|
|
|
|
|
nsBindingManager* bindingManager = document->BindingManager();
|
|
|
|
nsCOMPtr<nsIDOMNodeList> anonymousChildren;
|
|
|
|
bindingManager->GetAnonymousNodesFor(nonConstThis,
|
|
|
|
getter_AddRefs(anonymousChildren));
|
|
|
|
|
|
|
|
if (anonymousChildren) {
|
2013-05-01 15:50:08 -07:00
|
|
|
uint32_t length = 0;
|
2011-10-18 04:19:44 -07:00
|
|
|
anonymousChildren->GetLength(&length);
|
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
fputs("anonymous-children<\n", out);
|
2011-10-18 04:19:44 -07:00
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
for (uint32_t i = 0; i < length; ++i) {
|
|
|
|
nsCOMPtr<nsIDOMNode> node;
|
|
|
|
anonymousChildren->Item(i, getter_AddRefs(node));
|
|
|
|
nsCOMPtr<nsIContent> child = do_QueryInterface(node);
|
|
|
|
child->List(out, aIndent + 1);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
fputs(">\n", out);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
bool outHeader = false;
|
|
|
|
ExplicitChildIterator iter(nonConstThis);
|
|
|
|
for (nsIContent* child = iter.GetNextChild(); child; child = iter.GetNextChild()) {
|
|
|
|
if (!outHeader) {
|
|
|
|
outHeader = true;
|
2011-10-18 04:19:44 -07:00
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
fputs("content-list<\n", out);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2011-10-18 04:19:44 -07:00
|
|
|
|
2013-05-01 15:50:08 -07:00
|
|
|
child->List(out, aIndent + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outHeader) {
|
2011-10-18 04:19:44 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
fputs(">\n", out);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::DumpContent(FILE* out, int32_t aIndent,
|
|
|
|
bool aDumpAll) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t indent;
|
2007-03-22 10:30:00 -07:00
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
|
2011-05-05 09:26:33 -07:00
|
|
|
const nsString& buf = mNodeInfo->QualifiedName();
|
2007-03-22 10:30:00 -07:00
|
|
|
fputs("<", out);
|
|
|
|
fputs(NS_LossyConvertUTF16toASCII(buf).get(), out);
|
|
|
|
|
|
|
|
if(aDumpAll) ListAttributes(out);
|
|
|
|
|
|
|
|
fputs(">", out);
|
|
|
|
|
|
|
|
if(aIndent) fputs("\n", out);
|
|
|
|
|
2011-09-27 00:54:58 -07:00
|
|
|
for (nsIContent* child = GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t indent = aIndent ? aIndent + 1 : 0;
|
2011-09-27 00:54:58 -07:00
|
|
|
child->DumpContent(out, indent, aDumpAll);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
for (indent = aIndent; --indent >= 0; ) fputs(" ", out);
|
|
|
|
fputs("</", out);
|
|
|
|
fputs(NS_LossyConvertUTF16toASCII(buf).get(), out);
|
|
|
|
fputs(">", out);
|
|
|
|
|
|
|
|
if(aIndent) fputs("\n", out);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::CheckHandleEventForLinksPrecondition(nsEventChainVisitor& aVisitor,
|
|
|
|
nsIURI** aURI) const
|
2007-04-23 00:31:21 -07:00
|
|
|
{
|
|
|
|
if (aVisitor.mEventStatus == nsEventStatus_eConsumeNoDefault ||
|
2012-12-15 17:26:03 -08:00
|
|
|
(!aVisitor.mEvent->mFlags.mIsTrusted &&
|
2011-06-30 04:52:11 -07:00
|
|
|
(aVisitor.mEvent->message != NS_MOUSE_CLICK) &&
|
|
|
|
(aVisitor.mEvent->message != NS_KEY_PRESS) &&
|
|
|
|
(aVisitor.mEvent->message != NS_UI_ACTIVATE)) ||
|
2010-12-27 12:42:10 -08:00
|
|
|
!aVisitor.mPresContext ||
|
2012-12-15 17:26:04 -08:00
|
|
|
aVisitor.mEvent->mFlags.mMultipleActionsPrevented) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-04-23 00:31:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure we actually are a link
|
|
|
|
return IsLink(aURI);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::PreHandleEventForLinks(nsEventChainPreVisitor& aVisitor)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Optimisation: return early if this event doesn't interest us.
|
|
|
|
// IMPORTANT: this switch and the switch below it must be kept in sync!
|
|
|
|
switch (aVisitor.mEvent->message) {
|
|
|
|
case NS_MOUSE_ENTER_SYNTH:
|
|
|
|
case NS_FOCUS_CONTENT:
|
|
|
|
case NS_MOUSE_EXIT_SYNTH:
|
|
|
|
case NS_BLUR_CONTENT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-04-23 00:31:21 -07:00
|
|
|
// Make sure we meet the preconditions before continuing
|
|
|
|
nsCOMPtr<nsIURI> absURI;
|
|
|
|
if (!CheckHandleEventForLinksPrecondition(aVisitor, getter_AddRefs(absURI))) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
// We do the status bar updates in PreHandleEvent so that the status bar gets
|
|
|
|
// updated even if the event is consumed before we have a chance to set it.
|
|
|
|
switch (aVisitor.mEvent->message) {
|
2010-10-18 11:12:18 -07:00
|
|
|
// Set the status bar similarly for mouseover and focus
|
2007-04-23 00:31:21 -07:00
|
|
|
case NS_MOUSE_ENTER_SYNTH:
|
|
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
// FALL THROUGH
|
|
|
|
case NS_FOCUS_CONTENT:
|
2010-10-18 11:12:18 -07:00
|
|
|
if (aVisitor.mEvent->eventStructType != NS_FOCUS_EVENT ||
|
|
|
|
!static_cast<nsFocusEvent*>(aVisitor.mEvent)->isRefocus) {
|
2007-04-23 00:31:21 -07:00
|
|
|
nsAutoString target;
|
|
|
|
GetLinkTarget(target);
|
2007-07-11 06:05:05 -07:00
|
|
|
nsContentUtils::TriggerLink(this, aVisitor.mPresContext, absURI, target,
|
2011-10-17 07:59:28 -07:00
|
|
|
false, true, true);
|
2010-12-27 12:42:10 -08:00
|
|
|
// Make sure any ancestor links don't also TriggerLink
|
2012-12-15 17:26:04 -08:00
|
|
|
aVisitor.mEvent->mFlags.mMultipleActionsPrevented = true;
|
2007-04-23 00:31:21 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_MOUSE_EXIT_SYNTH:
|
|
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
// FALL THROUGH
|
|
|
|
case NS_BLUR_CONTENT:
|
|
|
|
rv = LeaveLink(aVisitor.mPresContext);
|
2010-12-27 12:42:10 -08:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2012-12-15 17:26:04 -08:00
|
|
|
aVisitor.mEvent->mFlags.mMultipleActionsPrevented = true;
|
2010-12-27 12:42:10 -08:00
|
|
|
}
|
2007-04-23 00:31:21 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// switch not in sync with the optimization switch earlier in this function
|
|
|
|
NS_NOTREACHED("switch statements not in sync");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::PostHandleEventForLinks(nsEventChainPostVisitor& aVisitor)
|
2007-04-23 00:31:21 -07:00
|
|
|
{
|
|
|
|
// Optimisation: return early if this event doesn't interest us.
|
|
|
|
// IMPORTANT: this switch and the switch below it must be kept in sync!
|
|
|
|
switch (aVisitor.mEvent->message) {
|
|
|
|
case NS_MOUSE_BUTTON_DOWN:
|
|
|
|
case NS_MOUSE_CLICK:
|
|
|
|
case NS_UI_ACTIVATE:
|
|
|
|
case NS_KEY_PRESS:
|
|
|
|
break;
|
|
|
|
default:
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-04-23 00:31:21 -07:00
|
|
|
// Make sure we meet the preconditions before continuing
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIURI> absURI;
|
2007-04-23 00:31:21 -07:00
|
|
|
if (!CheckHandleEventForLinksPrecondition(aVisitor, getter_AddRefs(absURI))) {
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
|
|
|
switch (aVisitor.mEvent->message) {
|
|
|
|
case NS_MOUSE_BUTTON_DOWN:
|
|
|
|
{
|
|
|
|
if (aVisitor.mEvent->eventStructType == NS_MOUSE_EVENT &&
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsMouseEvent*>(aVisitor.mEvent)->button ==
|
2007-03-22 10:30:00 -07:00
|
|
|
nsMouseEvent::eLeftButton) {
|
|
|
|
// don't make the link grab the focus if there is no link handler
|
|
|
|
nsILinkHandler *handler = aVisitor.mPresContext->GetLinkHandler();
|
|
|
|
nsIDocument *document = GetCurrentDoc();
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
if (handler && document) {
|
|
|
|
nsIFocusManager* fm = nsFocusManager::GetFocusManager();
|
|
|
|
if (fm) {
|
2012-12-15 17:26:04 -08:00
|
|
|
aVisitor.mEvent->mFlags.mMultipleActionsPrevented = true;
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
nsCOMPtr<nsIDOMElement> elem = do_QueryInterface(this);
|
2009-09-21 08:58:16 -07:00
|
|
|
fm->SetFocus(elem, nsIFocusManager::FLAG_BYMOUSE |
|
|
|
|
nsIFocusManager::FLAG_NOSCROLL);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 11:00:39 -07:00
|
|
|
|
2010-10-28 07:11:15 -07:00
|
|
|
nsEventStateManager::SetActiveManager(
|
2011-04-21 10:35:52 -07:00
|
|
|
aVisitor.mPresContext->EventStateManager(), this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_MOUSE_CLICK:
|
|
|
|
if (NS_IS_MOUSE_LEFT_CLICK(aVisitor.mEvent)) {
|
2009-10-13 10:23:48 -07:00
|
|
|
nsInputEvent* inputEvent = static_cast<nsInputEvent*>(aVisitor.mEvent);
|
2012-04-24 20:00:02 -07:00
|
|
|
if (inputEvent->IsControl() || inputEvent->IsMeta() ||
|
|
|
|
inputEvent->IsAlt() ||inputEvent->IsShift()) {
|
2009-10-13 10:23:48 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// The default action is simply to dispatch DOMActivate
|
2007-03-25 22:38:22 -07:00
|
|
|
nsCOMPtr<nsIPresShell> shell = aVisitor.mPresContext->GetPresShell();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (shell) {
|
|
|
|
// single-click
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
2012-12-15 17:26:03 -08:00
|
|
|
nsUIEvent actEvent(aVisitor.mEvent->mFlags.mIsTrusted,
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_UI_ACTIVATE, 1);
|
|
|
|
|
|
|
|
rv = shell->HandleDOMEventWithTarget(this, &actEvent, &status);
|
2010-12-27 12:42:10 -08:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_UI_ACTIVATE:
|
|
|
|
{
|
2011-01-03 18:46:19 -08:00
|
|
|
if (aVisitor.mEvent->originalTarget == this) {
|
2010-12-27 12:42:10 -08:00
|
|
|
nsAutoString target;
|
|
|
|
GetLinkTarget(target);
|
|
|
|
nsContentUtils::TriggerLink(this, aVisitor.mPresContext, absURI, target,
|
2012-12-15 17:26:03 -08:00
|
|
|
true, true,
|
|
|
|
aVisitor.mEvent->mFlags.mIsTrusted);
|
2010-12-27 12:42:10 -08:00
|
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case NS_KEY_PRESS:
|
|
|
|
{
|
|
|
|
if (aVisitor.mEvent->eventStructType == NS_KEY_EVENT) {
|
2007-07-08 00:08:04 -07:00
|
|
|
nsKeyEvent* keyEvent = static_cast<nsKeyEvent*>(aVisitor.mEvent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (keyEvent->keyCode == NS_VK_RETURN) {
|
|
|
|
nsEventStatus status = nsEventStatus_eIgnore;
|
|
|
|
rv = DispatchClickEvent(aVisitor.mPresContext, keyEvent, this,
|
2012-12-15 17:26:04 -08:00
|
|
|
false, nullptr, &status);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
aVisitor.mEventStatus = nsEventStatus_eConsumeNoDefault;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// switch not in sync with the optimization switch earlier in this function
|
|
|
|
NS_NOTREACHED("switch statements not in sync");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::GetLinkTarget(nsAString& aTarget)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
aTarget.Truncate();
|
|
|
|
}
|
|
|
|
|
2008-07-21 17:55:52 -07:00
|
|
|
// NOTE: The aPresContext pointer is NOT addrefed.
|
2009-12-10 23:37:41 -08:00
|
|
|
// *aSelectorList might be null even if NS_OK is returned; this
|
|
|
|
// happens when all the selectors were pseudo-element selectors.
|
2008-07-21 17:55:52 -07:00
|
|
|
static nsresult
|
|
|
|
ParseSelectorList(nsINode* aNode,
|
|
|
|
const nsAString& aSelectorString,
|
2011-03-29 10:29:21 -07:00
|
|
|
nsCSSSelectorList** aSelectorList)
|
2008-07-21 17:55:52 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aNode);
|
|
|
|
|
2011-10-18 03:53:36 -07:00
|
|
|
nsIDocument* doc = aNode->OwnerDoc();
|
2010-03-02 12:59:32 -08:00
|
|
|
nsCSSParser parser(doc->CSSLoader());
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
nsCSSSelectorList* selectorList;
|
2010-03-02 12:59:32 -08:00
|
|
|
nsresult rv = parser.ParseSelectorString(aSelectorString,
|
|
|
|
doc->GetDocumentURI(),
|
|
|
|
0, // XXXbz get the line number!
|
|
|
|
&selectorList);
|
2012-11-21 21:51:39 -08:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// We hit this for syntax errors, which are quite common, so don't
|
|
|
|
// use NS_ENSURE_SUCCESS. (For example, jQuery has an extended set
|
|
|
|
// of selectors, but it sees if we can parse them first.)
|
|
|
|
return rv;
|
|
|
|
}
|
2008-07-21 17:55:52 -07:00
|
|
|
|
2009-12-10 23:37:41 -08:00
|
|
|
// Filter out pseudo-element selectors from selectorList
|
|
|
|
nsCSSSelectorList** slot = &selectorList;
|
|
|
|
do {
|
|
|
|
nsCSSSelectorList* cur = *slot;
|
|
|
|
if (cur->mSelectors->IsPseudoElement()) {
|
|
|
|
*slot = cur->mNext;
|
2012-07-30 07:20:58 -07:00
|
|
|
cur->mNext = nullptr;
|
2009-12-10 23:37:41 -08:00
|
|
|
delete cur;
|
|
|
|
} else {
|
|
|
|
slot = &cur->mNext;
|
|
|
|
}
|
|
|
|
} while (*slot);
|
|
|
|
*aSelectorList = selectorList;
|
|
|
|
|
2008-07-21 17:55:52 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-09-30 15:17:14 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::MozMatchesSelector(const nsAString& aSelector,
|
|
|
|
ErrorResult& aError)
|
2009-09-30 15:17:14 -07:00
|
|
|
{
|
|
|
|
nsAutoPtr<nsCSSSelectorList> selectorList;
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
aError = ParseSelectorList(this, aSelector, getter_Transfers(selectorList));
|
2010-10-21 07:09:00 -07:00
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
if (aError.Failed()) {
|
|
|
|
return false;
|
2009-09-30 15:17:14 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
OwnerDoc()->FlushPendingLinkUpdates();
|
|
|
|
TreeMatchContext matchingContext(false,
|
|
|
|
nsRuleWalker::eRelevantLinkUnvisited,
|
|
|
|
OwnerDoc(),
|
|
|
|
TreeMatchContext::eNeverMatchVisited);
|
2012-12-04 20:15:47 -08:00
|
|
|
matchingContext.SetHasSpecifiedScope();
|
|
|
|
matchingContext.AddScopeElement(this);
|
2012-10-16 04:51:00 -07:00
|
|
|
return nsCSSRuleProcessor::SelectorListMatches(this, matchingContext,
|
|
|
|
selectorList);
|
2010-04-19 08:41:37 -07:00
|
|
|
}
|
2011-08-26 15:39:00 -07:00
|
|
|
|
2012-03-10 08:13:51 -08:00
|
|
|
static const nsAttrValue::EnumTable kCORSAttributeTable[] = {
|
|
|
|
// Order matters here
|
|
|
|
// See ParseCORSValue
|
|
|
|
{ "anonymous", CORS_ANONYMOUS },
|
|
|
|
{ "use-credentials", CORS_USE_CREDENTIALS },
|
|
|
|
{ 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* static */ void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ParseCORSValue(const nsAString& aValue,
|
|
|
|
nsAttrValue& aResult)
|
2012-03-10 08:13:51 -08:00
|
|
|
{
|
|
|
|
DebugOnly<bool> success =
|
|
|
|
aResult.ParseEnumValue(aValue, kCORSAttributeTable, false,
|
|
|
|
// default value is anonymous if aValue is
|
|
|
|
// not a value we understand
|
|
|
|
&kCORSAttributeTable[0]);
|
|
|
|
MOZ_ASSERT(success);
|
|
|
|
}
|
|
|
|
|
2012-03-10 08:13:52 -08:00
|
|
|
/* static */ CORSMode
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::StringToCORSMode(const nsAString& aValue)
|
2012-03-10 08:13:52 -08:00
|
|
|
{
|
|
|
|
if (aValue.IsVoid()) {
|
|
|
|
return CORS_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAttrValue val;
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::ParseCORSValue(aValue, val);
|
2012-03-10 08:13:52 -08:00
|
|
|
return CORSMode(val.GetEnumValue());
|
|
|
|
}
|
|
|
|
|
2012-03-10 08:13:52 -08:00
|
|
|
/* static */ CORSMode
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::AttrValueToCORSMode(const nsAttrValue* aValue)
|
2012-03-10 08:13:52 -08:00
|
|
|
{
|
|
|
|
if (!aValue) {
|
|
|
|
return CORS_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CORSMode(aValue->GetEnumValue());
|
|
|
|
}
|
|
|
|
|
2012-05-08 14:47:18 -07:00
|
|
|
static const char*
|
|
|
|
GetFullScreenError(nsIDocument* aDoc)
|
|
|
|
{
|
2013-02-27 15:28:27 -08:00
|
|
|
// Block fullscreen requests in the chrome document when the fullscreen API
|
|
|
|
// is configured for content only.
|
|
|
|
if (nsContentUtils::IsFullscreenApiContentOnly() &&
|
|
|
|
nsContentUtils::IsChromeDoc(aDoc)) {
|
|
|
|
return "FullScreenDeniedContentOnly";
|
|
|
|
}
|
|
|
|
|
2012-06-28 01:54:37 -07:00
|
|
|
nsCOMPtr<nsPIDOMWindow> win = aDoc->GetWindow();
|
2012-08-13 09:58:38 -07:00
|
|
|
if (aDoc->NodePrincipal()->GetAppStatus() >= nsIPrincipal::APP_STATUS_INSTALLED) {
|
2012-07-30 19:09:31 -07:00
|
|
|
// Request is in a web app and in the same origin as the web app.
|
|
|
|
// Don't enforce as strict security checks for web apps, the user
|
|
|
|
// is supposed to have trust in them. However documents cross-origin
|
|
|
|
// to the web app must still confirm to the normal security checks.
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-06-28 01:54:37 -07:00
|
|
|
}
|
|
|
|
|
2012-05-08 14:47:18 -07:00
|
|
|
if (!nsContentUtils::IsRequestFullScreenAllowed()) {
|
|
|
|
return "FullScreenDeniedNotInputDriven";
|
|
|
|
}
|
2012-07-30 19:09:31 -07:00
|
|
|
|
2012-05-08 14:47:18 -07:00
|
|
|
if (nsContentUtils::IsSitePermDeny(aDoc->NodePrincipal(), "fullscreen")) {
|
|
|
|
return "FullScreenDeniedBlocked";
|
|
|
|
}
|
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-05-08 14:47:18 -07:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
void
|
2012-11-14 14:10:08 -08:00
|
|
|
Element::MozRequestFullScreen()
|
2012-03-23 21:37:04 -07:00
|
|
|
{
|
|
|
|
// Only grant full-screen requests if this is called from inside a trusted
|
|
|
|
// event handler (i.e. inside an event handler for a user initiated event).
|
|
|
|
// This stops the full-screen from being abused similar to the popups of old,
|
|
|
|
// and it also makes it harder for bad guys' script to go full-screen and
|
|
|
|
// spoof the browser chrome/window and phish logins etc.
|
2012-07-30 19:09:31 -07:00
|
|
|
// Note that requests for fullscreen inside a web app's origin are exempt
|
|
|
|
// from this restriction.
|
2012-05-08 14:47:18 -07:00
|
|
|
const char* error = GetFullScreenError(OwnerDoc());
|
|
|
|
if (error) {
|
2012-03-23 21:37:04 -07:00
|
|
|
nsContentUtils::ReportToConsole(nsIScriptError::warningFlag,
|
|
|
|
"DOM", OwnerDoc(),
|
|
|
|
nsContentUtils::eDOM_PROPERTIES,
|
2012-05-08 14:47:18 -07:00
|
|
|
error);
|
2012-03-23 21:37:04 -07:00
|
|
|
nsRefPtr<nsAsyncDOMEvent> e =
|
|
|
|
new nsAsyncDOMEvent(OwnerDoc(),
|
|
|
|
NS_LITERAL_STRING("mozfullscreenerror"),
|
|
|
|
true,
|
|
|
|
false);
|
|
|
|
e->PostDOMEvent();
|
2012-10-16 04:51:00 -07:00
|
|
|
return;
|
2012-03-23 21:37:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
OwnerDoc()->AsyncRequestFullScreen(this);
|
|
|
|
|
2012-10-16 04:51:00 -07:00
|
|
|
return;
|
2012-03-23 21:37:04 -07:00
|
|
|
}
|
2012-12-23 18:38:41 -08:00
|
|
|
|
|
|
|
// Try to keep the size of StringBuilder close to a jemalloc bucket size.
|
|
|
|
#define STRING_BUFFER_UNITS 1020
|
|
|
|
|
|
|
|
class StringBuilder
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
class Unit
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Unit() : mAtom(nullptr), mType(eUnknown), mLength(0)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(StringBuilder::Unit);
|
|
|
|
}
|
|
|
|
~Unit()
|
|
|
|
{
|
|
|
|
if (mType == eString || mType == eStringWithEncode) {
|
|
|
|
delete mString;
|
|
|
|
}
|
|
|
|
MOZ_COUNT_DTOR(StringBuilder::Unit);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum Type
|
|
|
|
{
|
|
|
|
eUnknown,
|
|
|
|
eAtom,
|
|
|
|
eString,
|
|
|
|
eStringWithEncode,
|
|
|
|
eLiteral,
|
|
|
|
eTextFragment,
|
|
|
|
eTextFragmentWithEncode,
|
|
|
|
};
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
nsIAtom* mAtom;
|
|
|
|
const char* mLiteral;
|
|
|
|
nsAutoString* mString;
|
|
|
|
const nsTextFragment* mTextFragment;
|
|
|
|
};
|
|
|
|
Type mType;
|
|
|
|
uint32_t mLength;
|
|
|
|
};
|
|
|
|
public:
|
|
|
|
StringBuilder() : mLast(this), mLength(0)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(StringBuilder);
|
|
|
|
}
|
|
|
|
|
|
|
|
~StringBuilder()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(StringBuilder);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Append(nsIAtom* aAtom)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mAtom = aAtom;
|
|
|
|
u->mType = Unit::eAtom;
|
|
|
|
uint32_t len = aAtom->GetLength();
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<int N>
|
|
|
|
void Append(const char (&aLiteral)[N])
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mLiteral = aLiteral;
|
|
|
|
u->mType = Unit::eLiteral;
|
|
|
|
uint32_t len = N - 1;
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<int N>
|
|
|
|
void Append(char (&aLiteral)[N])
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mLiteral = aLiteral;
|
|
|
|
u->mType = Unit::eLiteral;
|
|
|
|
uint32_t len = N - 1;
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Append(const nsAString& aString)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mString = new nsAutoString(aString);
|
|
|
|
u->mType = Unit::eString;
|
|
|
|
uint32_t len = aString.Length();
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Append(nsAutoString* aString)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mString = aString;
|
|
|
|
u->mType = Unit::eString;
|
|
|
|
uint32_t len = aString->Length();
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppendWithAttrEncode(nsAutoString* aString, uint32_t aLen)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mString = aString;
|
|
|
|
u->mType = Unit::eStringWithEncode;
|
|
|
|
u->mLength = aLen;
|
|
|
|
mLength += aLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Append(const nsTextFragment* aTextFragment)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mTextFragment = aTextFragment;
|
|
|
|
u->mType = Unit::eTextFragment;
|
|
|
|
uint32_t len = aTextFragment->GetLength();
|
|
|
|
u->mLength = len;
|
|
|
|
mLength += len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AppendWithEncode(const nsTextFragment* aTextFragment, uint32_t aLen)
|
|
|
|
{
|
|
|
|
Unit* u = AddUnit();
|
|
|
|
u->mTextFragment = aTextFragment;
|
|
|
|
u->mType = Unit::eTextFragmentWithEncode;
|
|
|
|
u->mLength = aLen;
|
|
|
|
mLength += aLen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ToString(nsAString& aOut)
|
|
|
|
{
|
|
|
|
if (!aOut.SetCapacity(mLength, fallible_t())) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (StringBuilder* current = this; current; current = current->mNext) {
|
|
|
|
uint32_t len = current->mUnits.Length();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
|
|
Unit& u = current->mUnits[i];
|
|
|
|
switch (u.mType) {
|
|
|
|
case Unit::eAtom:
|
|
|
|
aOut.Append(nsDependentAtomString(u.mAtom));
|
|
|
|
break;
|
|
|
|
case Unit::eString:
|
|
|
|
aOut.Append(*(u.mString));
|
|
|
|
break;
|
|
|
|
case Unit::eStringWithEncode:
|
|
|
|
EncodeAttrString(*(u.mString), aOut);
|
|
|
|
break;
|
|
|
|
case Unit::eLiteral:
|
|
|
|
aOut.AppendASCII(u.mLiteral, u.mLength);
|
|
|
|
break;
|
|
|
|
case Unit::eTextFragment:
|
|
|
|
u.mTextFragment->AppendTo(aOut);
|
|
|
|
break;
|
|
|
|
case Unit::eTextFragmentWithEncode:
|
|
|
|
EncodeTextFragment(u.mTextFragment, aOut);
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-28 18:38:30 -07:00
|
|
|
MOZ_CRASH("Unknown unit type?");
|
2012-12-23 18:38:41 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Unit* AddUnit()
|
|
|
|
{
|
|
|
|
if (mLast->mUnits.Length() == STRING_BUFFER_UNITS) {
|
|
|
|
new StringBuilder(this);
|
|
|
|
}
|
|
|
|
return mLast->mUnits.AppendElement();
|
|
|
|
}
|
|
|
|
|
|
|
|
StringBuilder(StringBuilder* aFirst)
|
|
|
|
: mLast(nullptr), mLength(0)
|
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(StringBuilder);
|
|
|
|
aFirst->mLast->mNext = this;
|
|
|
|
aFirst->mLast = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EncodeAttrString(const nsAutoString& aValue, nsAString& aOut)
|
|
|
|
{
|
|
|
|
const PRUnichar* c = aValue.BeginReading();
|
|
|
|
const PRUnichar* end = aValue.EndReading();
|
|
|
|
while (c < end) {
|
|
|
|
switch (*c) {
|
|
|
|
case '"':
|
|
|
|
aOut.AppendLiteral(""");
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
aOut.AppendLiteral("&");
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
aOut.AppendLiteral(" ");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
aOut.Append(*c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EncodeTextFragment(const nsTextFragment* aValue, nsAString& aOut)
|
|
|
|
{
|
|
|
|
uint32_t len = aValue->GetLength();
|
|
|
|
if (aValue->Is2b()) {
|
|
|
|
const PRUnichar* data = aValue->Get2b();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
|
|
const PRUnichar c = data[i];
|
|
|
|
switch (c) {
|
|
|
|
case '<':
|
|
|
|
aOut.AppendLiteral("<");
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
aOut.AppendLiteral(">");
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
aOut.AppendLiteral("&");
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
aOut.AppendLiteral(" ");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
aOut.Append(c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const char* data = aValue->Get1b();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
|
|
const unsigned char c = data[i];
|
|
|
|
switch (c) {
|
|
|
|
case '<':
|
|
|
|
aOut.AppendLiteral("<");
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
aOut.AppendLiteral(">");
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
aOut.AppendLiteral("&");
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
aOut.AppendLiteral(" ");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
aOut.Append(c);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoTArray<Unit, STRING_BUFFER_UNITS> mUnits;
|
|
|
|
nsAutoPtr<StringBuilder> mNext;
|
|
|
|
StringBuilder* mLast;
|
|
|
|
// mLength is used only in the first StringBuilder object in the linked list.
|
|
|
|
uint32_t mLength;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
AppendEncodedCharacters(const nsTextFragment* aText, StringBuilder& aBuilder)
|
|
|
|
{
|
|
|
|
uint32_t extraSpaceNeeded = 0;
|
|
|
|
uint32_t len = aText->GetLength();
|
|
|
|
if (aText->Is2b()) {
|
|
|
|
const PRUnichar* data = aText->Get2b();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
|
|
const PRUnichar c = data[i];
|
|
|
|
switch (c) {
|
|
|
|
case '<':
|
|
|
|
extraSpaceNeeded += ArrayLength("<") - 2;
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
extraSpaceNeeded += ArrayLength(">") - 2;
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
extraSpaceNeeded += ArrayLength("&") - 2;
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
extraSpaceNeeded += ArrayLength(" ") - 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const char* data = aText->Get1b();
|
|
|
|
for (uint32_t i = 0; i < len; ++i) {
|
|
|
|
const unsigned char c = data[i];
|
|
|
|
switch (c) {
|
|
|
|
case '<':
|
|
|
|
extraSpaceNeeded += ArrayLength("<") - 2;
|
|
|
|
break;
|
|
|
|
case '>':
|
|
|
|
extraSpaceNeeded += ArrayLength(">") - 2;
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
extraSpaceNeeded += ArrayLength("&") - 2;
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
extraSpaceNeeded += ArrayLength(" ") - 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extraSpaceNeeded) {
|
|
|
|
aBuilder.AppendWithEncode(aText, len + extraSpaceNeeded);
|
|
|
|
} else {
|
|
|
|
aBuilder.Append(aText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
AppendEncodedAttributeValue(nsAutoString* aValue, StringBuilder& aBuilder)
|
|
|
|
{
|
|
|
|
const PRUnichar* c = aValue->BeginReading();
|
|
|
|
const PRUnichar* end = aValue->EndReading();
|
|
|
|
|
|
|
|
uint32_t extraSpaceNeeded = 0;
|
|
|
|
while (c < end) {
|
|
|
|
switch (*c) {
|
|
|
|
case '"':
|
|
|
|
extraSpaceNeeded += ArrayLength(""") - 2;
|
|
|
|
break;
|
|
|
|
case '&':
|
|
|
|
extraSpaceNeeded += ArrayLength("&") - 2;
|
|
|
|
break;
|
|
|
|
case 0x00A0:
|
|
|
|
extraSpaceNeeded += ArrayLength(" ") - 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++c;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extraSpaceNeeded) {
|
|
|
|
aBuilder.AppendWithAttrEncode(aValue, aValue->Length() + extraSpaceNeeded);
|
|
|
|
} else {
|
|
|
|
aBuilder.Append(aValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
StartElement(Element* aContent, StringBuilder& aBuilder)
|
|
|
|
{
|
|
|
|
nsIAtom* localName = aContent->Tag();
|
|
|
|
int32_t tagNS = aContent->GetNameSpaceID();
|
|
|
|
|
|
|
|
aBuilder.Append("<");
|
|
|
|
if (aContent->IsHTML() || aContent->IsSVG() || aContent->IsMathML()) {
|
|
|
|
aBuilder.Append(localName);
|
|
|
|
} else {
|
|
|
|
aBuilder.Append(aContent->NodeName());
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t count = aContent->GetAttrCount();
|
|
|
|
for (int32_t i = count; i > 0;) {
|
|
|
|
--i;
|
|
|
|
const nsAttrName* name = aContent->GetAttrNameAt(i);
|
|
|
|
int32_t attNs = name->NamespaceID();
|
|
|
|
nsIAtom* attName = name->LocalName();
|
|
|
|
|
|
|
|
// Filter out any attribute starting with [-|_]moz
|
|
|
|
nsDependentAtomString attrNameStr(attName);
|
|
|
|
if (StringBeginsWith(attrNameStr, NS_LITERAL_STRING("_moz")) ||
|
|
|
|
StringBeginsWith(attrNameStr, NS_LITERAL_STRING("-moz"))) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString* attValue = new nsAutoString();
|
|
|
|
aContent->GetAttr(attNs, attName, *attValue);
|
|
|
|
|
|
|
|
// Filter out special case of <br type="_moz*"> used by the editor.
|
|
|
|
// Bug 16988. Yuck.
|
|
|
|
if (localName == nsGkAtoms::br && tagNS == kNameSpaceID_XHTML &&
|
|
|
|
attName == nsGkAtoms::type && attNs == kNameSpaceID_None &&
|
|
|
|
StringBeginsWith(*attValue, NS_LITERAL_STRING("_moz"))) {
|
|
|
|
delete attValue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MOZ_LIKELY(attNs == kNameSpaceID_None) ||
|
|
|
|
(attNs == kNameSpaceID_XMLNS &&
|
|
|
|
attName == nsGkAtoms::xmlns)) {
|
|
|
|
aBuilder.Append(" ");
|
|
|
|
} else if (attNs == kNameSpaceID_XML) {
|
|
|
|
aBuilder.Append(" xml:");
|
|
|
|
} else if (attNs == kNameSpaceID_XMLNS) {
|
|
|
|
aBuilder.Append(" xmlns:");
|
|
|
|
} else if (attNs == kNameSpaceID_XLink) {
|
|
|
|
aBuilder.Append(" xlink:");
|
|
|
|
} else {
|
|
|
|
nsIAtom* prefix = name->GetPrefix();
|
|
|
|
if (prefix) {
|
|
|
|
aBuilder.Append(" ");
|
|
|
|
aBuilder.Append(prefix);
|
|
|
|
aBuilder.Append(":");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
aBuilder.Append(attName);
|
|
|
|
aBuilder.Append("=\"");
|
|
|
|
AppendEncodedAttributeValue(attValue, aBuilder);
|
|
|
|
aBuilder.Append("\"");
|
|
|
|
}
|
|
|
|
|
|
|
|
aBuilder.Append(">");
|
|
|
|
|
|
|
|
/*
|
|
|
|
// Per HTML spec we should append one \n if the first child of
|
|
|
|
// pre/textarea/listing is a textnode and starts with a \n.
|
|
|
|
// But because browsers haven't traditionally had that behavior,
|
|
|
|
// we're not changing our behavior either - yet.
|
|
|
|
if (aContent->IsHTML()) {
|
|
|
|
if (localName == nsGkAtoms::pre || localName == nsGkAtoms::textarea ||
|
|
|
|
localName == nsGkAtoms::listing) {
|
|
|
|
nsIContent* fc = aContent->GetFirstChild();
|
|
|
|
if (fc &&
|
|
|
|
(fc->NodeType() == nsIDOMNode::TEXT_NODE ||
|
|
|
|
fc->NodeType() == nsIDOMNode::CDATA_SECTION_NODE)) {
|
|
|
|
const nsTextFragment* text = fc->GetText();
|
|
|
|
if (text && text->GetLength() && text->CharAt(0) == PRUnichar('\n')) {
|
|
|
|
aBuilder.Append("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
ShouldEscape(nsIContent* aParent)
|
|
|
|
{
|
|
|
|
if (!aParent || !aParent->IsHTML()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const nsIAtom* nonEscapingElements[] = {
|
|
|
|
nsGkAtoms::style, nsGkAtoms::script, nsGkAtoms::xmp,
|
|
|
|
nsGkAtoms::iframe, nsGkAtoms::noembed, nsGkAtoms::noframes,
|
|
|
|
nsGkAtoms::plaintext,
|
|
|
|
// Per the current spec noscript should be escaped in case
|
|
|
|
// scripts are disabled or if document doesn't have
|
|
|
|
// browsing context. However the latter seems to be a spec bug
|
|
|
|
// and Gecko hasn't traditionally done the former.
|
|
|
|
nsGkAtoms::noscript
|
|
|
|
};
|
|
|
|
static mozilla::BloomFilter<12, nsIAtom> sFilter;
|
|
|
|
static bool sInitialized = false;
|
|
|
|
if (!sInitialized) {
|
|
|
|
sInitialized = true;
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(nonEscapingElements); ++i) {
|
|
|
|
sFilter.add(nonEscapingElements[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom* tag = aParent->Tag();
|
|
|
|
if (sFilter.mightContain(tag)) {
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(nonEscapingElements); ++i) {
|
|
|
|
if (tag == nonEscapingElements[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
|
|
|
IsVoidTag(Element* aElement)
|
|
|
|
{
|
|
|
|
if (!aElement->IsHTML()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const nsIAtom* voidElements[] = {
|
|
|
|
nsGkAtoms::area, nsGkAtoms::base, nsGkAtoms::basefont,
|
|
|
|
nsGkAtoms::bgsound, nsGkAtoms::br, nsGkAtoms::col,
|
|
|
|
nsGkAtoms::command, nsGkAtoms::embed, nsGkAtoms::frame,
|
|
|
|
nsGkAtoms::hr, nsGkAtoms::img, nsGkAtoms::input,
|
|
|
|
nsGkAtoms::keygen, nsGkAtoms::link, nsGkAtoms::meta,
|
|
|
|
nsGkAtoms::param, nsGkAtoms::source, nsGkAtoms::track,
|
|
|
|
nsGkAtoms::wbr
|
|
|
|
};
|
|
|
|
|
|
|
|
static mozilla::BloomFilter<12, nsIAtom> sFilter;
|
|
|
|
static bool sInitialized = false;
|
|
|
|
if (!sInitialized) {
|
|
|
|
sInitialized = true;
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(voidElements); ++i) {
|
|
|
|
sFilter.add(voidElements[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIAtom* tag = aElement->Tag();
|
|
|
|
if (sFilter.mightContain(tag)) {
|
|
|
|
for (uint32_t i = 0; i < ArrayLength(voidElements); ++i) {
|
|
|
|
if (tag == voidElements[i]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
Serialize(Element* aRoot, bool aDescendentsOnly, nsAString& aOut)
|
|
|
|
{
|
2013-03-26 00:15:23 -07:00
|
|
|
nsINode* current = aDescendentsOnly ?
|
|
|
|
nsNodeUtils::GetFirstChildOfTemplateOrNode(aRoot) : aRoot;
|
|
|
|
|
2012-12-23 18:38:41 -08:00
|
|
|
if (!current) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringBuilder builder;
|
|
|
|
nsIContent* next;
|
|
|
|
while (true) {
|
|
|
|
bool isVoid = false;
|
|
|
|
switch (current->NodeType()) {
|
|
|
|
case nsIDOMNode::ELEMENT_NODE: {
|
|
|
|
Element* elem = current->AsElement();
|
|
|
|
StartElement(elem, builder);
|
|
|
|
isVoid = IsVoidTag(elem);
|
2013-03-26 00:15:23 -07:00
|
|
|
if (!isVoid &&
|
|
|
|
(next = nsNodeUtils::GetFirstChildOfTemplateOrNode(current))) {
|
2012-12-23 18:38:41 -08:00
|
|
|
current = next;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case nsIDOMNode::TEXT_NODE:
|
|
|
|
case nsIDOMNode::CDATA_SECTION_NODE: {
|
|
|
|
const nsTextFragment* text = static_cast<nsIContent*>(current)->GetText();
|
|
|
|
nsIContent* parent = current->GetParent();
|
|
|
|
if (ShouldEscape(parent)) {
|
|
|
|
AppendEncodedCharacters(text, builder);
|
|
|
|
} else {
|
|
|
|
builder.Append(text);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case nsIDOMNode::COMMENT_NODE: {
|
|
|
|
builder.Append("<!--");
|
|
|
|
builder.Append(static_cast<nsIContent*>(current)->GetText());
|
|
|
|
builder.Append("-->");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case nsIDOMNode::DOCUMENT_TYPE_NODE: {
|
|
|
|
builder.Append("<!DOCTYPE ");
|
|
|
|
builder.Append(current->NodeName());
|
|
|
|
builder.Append(">");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case nsIDOMNode::PROCESSING_INSTRUCTION_NODE: {
|
|
|
|
builder.Append("<?");
|
|
|
|
builder.Append(current->NodeName());
|
|
|
|
builder.Append(" ");
|
|
|
|
builder.Append(static_cast<nsIContent*>(current)->GetText());
|
|
|
|
builder.Append(">");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
if (!isVoid && current->NodeType() == nsIDOMNode::ELEMENT_NODE) {
|
|
|
|
builder.Append("</");
|
|
|
|
nsIContent* elem = static_cast<nsIContent*>(current);
|
|
|
|
if (elem->IsHTML() || elem->IsSVG() || elem->IsMathML()) {
|
|
|
|
builder.Append(elem->Tag());
|
|
|
|
} else {
|
|
|
|
builder.Append(current->NodeName());
|
|
|
|
}
|
|
|
|
builder.Append(">");
|
|
|
|
}
|
|
|
|
isVoid = false;
|
|
|
|
|
|
|
|
if (current == aRoot) {
|
|
|
|
return builder.ToString(aOut);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((next = current->GetNextSibling())) {
|
|
|
|
current = next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
current = current->GetParentNode();
|
2013-03-26 00:15:23 -07:00
|
|
|
|
|
|
|
// Template case, if we are in a template's content, then the parent
|
|
|
|
// should be the host template element.
|
|
|
|
if (current->NodeType() == nsIDOMNode::DOCUMENT_FRAGMENT_NODE) {
|
|
|
|
DocumentFragment* frag = static_cast<DocumentFragment*>(current);
|
|
|
|
HTMLTemplateElement* fragHost = frag->GetHost();
|
|
|
|
if (fragHost) {
|
|
|
|
current = fragHost;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-23 18:38:41 -08:00
|
|
|
if (aDescendentsOnly && current == aRoot) {
|
|
|
|
return builder.ToString(aOut);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
Element::GetMarkup(bool aIncludeSelf, nsAString& aMarkup)
|
|
|
|
{
|
|
|
|
aMarkup.Truncate();
|
|
|
|
|
|
|
|
nsIDocument* doc = OwnerDoc();
|
|
|
|
if (IsInHTMLDocument()) {
|
|
|
|
return Serialize(this, !aIncludeSelf, aMarkup) ? NS_OK : NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsAutoString contentType;
|
|
|
|
doc->GetContentType(contentType);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocumentEncoder> docEncoder = doc->GetCachedEncoder();
|
|
|
|
if (!docEncoder) {
|
|
|
|
docEncoder =
|
|
|
|
do_CreateInstance(PromiseFlatCString(
|
|
|
|
nsDependentCString(NS_DOC_ENCODER_CONTRACTID_BASE) +
|
|
|
|
NS_ConvertUTF16toUTF8(contentType)
|
|
|
|
).get());
|
|
|
|
}
|
|
|
|
if (!docEncoder) {
|
|
|
|
// This could be some type for which we create a synthetic document. Try
|
|
|
|
// again as XML
|
|
|
|
contentType.AssignLiteral("application/xml");
|
|
|
|
docEncoder = do_CreateInstance(NS_DOC_ENCODER_CONTRACTID_BASE "application/xml");
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(docEncoder, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
uint32_t flags = nsIDocumentEncoder::OutputEncodeBasicEntities |
|
|
|
|
// Output DOM-standard newlines
|
|
|
|
nsIDocumentEncoder::OutputLFLineBreak |
|
|
|
|
// Don't do linebreaking that's not present in
|
|
|
|
// the source
|
|
|
|
nsIDocumentEncoder::OutputRaw |
|
|
|
|
// Only check for mozdirty when necessary (bug 599983)
|
|
|
|
nsIDocumentEncoder::OutputIgnoreMozDirty;
|
|
|
|
|
|
|
|
if (IsEditable()) {
|
|
|
|
nsIEditor* editor = GetEditorInternal();
|
|
|
|
if (editor && editor->OutputsMozDirty()) {
|
|
|
|
flags &= ~nsIDocumentEncoder::OutputIgnoreMozDirty;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = docEncoder->NativeInit(doc, contentType, flags);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (aIncludeSelf) {
|
|
|
|
docEncoder->SetNativeNode(this);
|
|
|
|
} else {
|
|
|
|
docEncoder->SetNativeContainerNode(this);
|
|
|
|
}
|
|
|
|
rv = docEncoder->EncodeToString(aMarkup);
|
|
|
|
if (!aIncludeSelf) {
|
|
|
|
doc->SetCachedEncoder(docEncoder.forget());
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fire mutation events for changes caused by parsing directly into a
|
|
|
|
* context node.
|
|
|
|
*
|
|
|
|
* @param aDoc the document of the node
|
|
|
|
* @param aDest the destination node that got stuff appended to it
|
|
|
|
* @param aOldChildCount the number of children the node had before parsing
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
FireMutationEventsForDirectParsing(nsIDocument* aDoc, nsIContent* aDest,
|
|
|
|
int32_t aOldChildCount)
|
|
|
|
{
|
|
|
|
// Fire mutation events. Optimize for the case when there are no listeners
|
|
|
|
int32_t newChildCount = aDest->GetChildCount();
|
|
|
|
if (newChildCount && nsContentUtils::
|
|
|
|
HasMutationListeners(aDoc, NS_EVENT_BITS_MUTATION_NODEINSERTED)) {
|
|
|
|
nsAutoTArray<nsCOMPtr<nsIContent>, 50> childNodes;
|
|
|
|
NS_ASSERTION(newChildCount - aOldChildCount >= 0,
|
|
|
|
"What, some unexpected dom mutation has happened?");
|
|
|
|
childNodes.SetCapacity(newChildCount - aOldChildCount);
|
|
|
|
for (nsIContent* child = aDest->GetFirstChild();
|
|
|
|
child;
|
|
|
|
child = child->GetNextSibling()) {
|
|
|
|
childNodes.AppendElement(child);
|
|
|
|
}
|
|
|
|
Element::FireNodeInserted(aDoc, aDest, childNodes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::GetInnerHTML(nsAString& aInnerHTML, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
aError = GetMarkup(false, aInnerHTML);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::SetInnerHTML(const nsAString& aInnerHTML, ErrorResult& aError)
|
|
|
|
{
|
2013-03-26 00:15:23 -07:00
|
|
|
FragmentOrElement* target = this;
|
|
|
|
// Handle template case.
|
|
|
|
if (nsNodeUtils::IsTemplateElement(target)) {
|
|
|
|
DocumentFragment* frag =
|
|
|
|
static_cast<HTMLTemplateElement*>(target)->Content();
|
|
|
|
MOZ_ASSERT(frag);
|
|
|
|
target = frag;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDocument* doc = target->OwnerDoc();
|
2012-12-23 18:38:41 -08:00
|
|
|
|
|
|
|
// Batch possible DOMSubtreeModified events.
|
|
|
|
mozAutoSubtreeModified subtree(doc, nullptr);
|
|
|
|
|
2013-03-26 00:15:23 -07:00
|
|
|
target->FireNodeRemovedForChildren();
|
2012-12-23 18:38:41 -08:00
|
|
|
|
|
|
|
// Needed when innerHTML is used in combination with contenteditable
|
|
|
|
mozAutoDocUpdate updateBatch(doc, UPDATE_CONTENT_MODEL, true);
|
|
|
|
|
|
|
|
// Remove childnodes.
|
2013-03-26 00:15:23 -07:00
|
|
|
uint32_t childCount = target->GetChildCount();
|
|
|
|
nsAutoMutationBatch mb(target, true, false);
|
2012-12-23 18:38:41 -08:00
|
|
|
for (uint32_t i = 0; i < childCount; ++i) {
|
2013-03-26 00:15:23 -07:00
|
|
|
target->RemoveChildAt(0, true);
|
2012-12-23 18:38:41 -08:00
|
|
|
}
|
|
|
|
mb.RemovalDone();
|
|
|
|
|
|
|
|
nsAutoScriptLoaderDisabler sld(doc);
|
|
|
|
|
|
|
|
if (doc->IsHTML()) {
|
2013-03-26 00:15:23 -07:00
|
|
|
int32_t oldChildCount = target->GetChildCount();
|
2012-12-23 18:38:41 -08:00
|
|
|
aError = nsContentUtils::ParseFragmentHTML(aInnerHTML,
|
2013-03-26 00:15:23 -07:00
|
|
|
target,
|
2012-12-23 18:38:41 -08:00
|
|
|
Tag(),
|
|
|
|
GetNameSpaceID(),
|
|
|
|
doc->GetCompatibilityMode() ==
|
|
|
|
eCompatibility_NavQuirks,
|
|
|
|
true);
|
|
|
|
mb.NodesAdded();
|
|
|
|
// HTML5 parser has notified, but not fired mutation events.
|
2013-03-26 00:15:23 -07:00
|
|
|
FireMutationEventsForDirectParsing(doc, target, oldChildCount);
|
2012-12-23 18:38:41 -08:00
|
|
|
} else {
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> df;
|
2013-03-26 00:15:23 -07:00
|
|
|
aError = nsContentUtils::CreateContextualFragment(target, aInnerHTML,
|
2012-12-23 18:38:41 -08:00
|
|
|
true,
|
|
|
|
getter_AddRefs(df));
|
|
|
|
nsCOMPtr<nsINode> fragment = do_QueryInterface(df);
|
|
|
|
if (!aError.Failed()) {
|
|
|
|
// Suppress assertion about node removal mutation events that can't have
|
|
|
|
// listeners anyway, because no one has had the chance to register mutation
|
|
|
|
// listeners on the fragment that comes from the parser.
|
|
|
|
nsAutoScriptBlockerSuppressNodeRemoved scriptBlocker;
|
|
|
|
|
2013-03-26 00:15:23 -07:00
|
|
|
static_cast<nsINode*>(target)->AppendChild(*fragment, aError);
|
2012-12-23 18:38:41 -08:00
|
|
|
mb.NodesAdded();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::GetOuterHTML(nsAString& aOuterHTML, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
aError = GetMarkup(true, aOuterHTML);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::SetOuterHTML(const nsAString& aOuterHTML, ErrorResult& aError)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> parent = GetParentNode();
|
|
|
|
if (!parent) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parent->NodeType() == nsIDOMNode::DOCUMENT_NODE) {
|
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (OwnerDoc()->IsHTML()) {
|
|
|
|
nsIAtom* localName;
|
|
|
|
int32_t namespaceID;
|
|
|
|
if (parent->IsElement()) {
|
|
|
|
localName = static_cast<nsIContent*>(parent.get())->Tag();
|
|
|
|
namespaceID = static_cast<nsIContent*>(parent.get())->GetNameSpaceID();
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(parent->NodeType() == nsIDOMNode::DOCUMENT_FRAGMENT_NODE,
|
|
|
|
"How come the parent isn't a document, a fragment or an element?");
|
|
|
|
localName = nsGkAtoms::body;
|
|
|
|
namespaceID = kNameSpaceID_XHTML;
|
|
|
|
}
|
2013-04-10 07:15:54 -07:00
|
|
|
nsRefPtr<DocumentFragment> fragment =
|
|
|
|
new DocumentFragment(OwnerDoc()->NodeInfoManager());
|
2012-12-23 18:38:41 -08:00
|
|
|
nsContentUtils::ParseFragmentHTML(aOuterHTML,
|
|
|
|
fragment,
|
|
|
|
localName,
|
|
|
|
namespaceID,
|
|
|
|
OwnerDoc()->GetCompatibilityMode() ==
|
|
|
|
eCompatibility_NavQuirks,
|
|
|
|
true);
|
|
|
|
parent->ReplaceChild(*fragment, *this, aError);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> context;
|
|
|
|
if (parent->IsElement()) {
|
|
|
|
context = parent;
|
|
|
|
} else {
|
|
|
|
NS_ASSERTION(parent->NodeType() == nsIDOMNode::DOCUMENT_FRAGMENT_NODE,
|
|
|
|
"How come the parent isn't a document, a fragment or an element?");
|
|
|
|
nsCOMPtr<nsINodeInfo> info =
|
|
|
|
OwnerDoc()->NodeInfoManager()->GetNodeInfo(nsGkAtoms::body,
|
|
|
|
nullptr,
|
|
|
|
kNameSpaceID_XHTML,
|
|
|
|
nsIDOMNode::ELEMENT_NODE);
|
|
|
|
context = NS_NewHTMLBodyElement(info.forget(), FROM_PARSER_FRAGMENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> df;
|
|
|
|
aError = nsContentUtils::CreateContextualFragment(context,
|
|
|
|
aOuterHTML,
|
|
|
|
true,
|
|
|
|
getter_AddRefs(df));
|
|
|
|
if (aError.Failed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nsCOMPtr<nsINode> fragment = do_QueryInterface(df);
|
|
|
|
parent->ReplaceChild(*fragment, *this, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum nsAdjacentPosition {
|
|
|
|
eBeforeBegin,
|
|
|
|
eAfterBegin,
|
|
|
|
eBeforeEnd,
|
|
|
|
eAfterEnd
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
Element::InsertAdjacentHTML(const nsAString& aPosition, const nsAString& aText,
|
|
|
|
ErrorResult& aError)
|
|
|
|
{
|
|
|
|
nsAdjacentPosition position;
|
|
|
|
if (aPosition.LowerCaseEqualsLiteral("beforebegin")) {
|
|
|
|
position = eBeforeBegin;
|
|
|
|
} else if (aPosition.LowerCaseEqualsLiteral("afterbegin")) {
|
|
|
|
position = eAfterBegin;
|
|
|
|
} else if (aPosition.LowerCaseEqualsLiteral("beforeend")) {
|
|
|
|
position = eBeforeEnd;
|
|
|
|
} else if (aPosition.LowerCaseEqualsLiteral("afterend")) {
|
|
|
|
position = eAfterEnd;
|
|
|
|
} else {
|
|
|
|
aError.Throw(NS_ERROR_DOM_SYNTAX_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> destination;
|
|
|
|
if (position == eBeforeBegin || position == eAfterEnd) {
|
|
|
|
destination = GetParent();
|
|
|
|
if (!destination) {
|
|
|
|
aError.Throw(NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
destination = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIDocument* doc = OwnerDoc();
|
|
|
|
|
|
|
|
// Needed when insertAdjacentHTML is used in combination with contenteditable
|
|
|
|
mozAutoDocUpdate updateBatch(doc, UPDATE_CONTENT_MODEL, true);
|
|
|
|
nsAutoScriptLoaderDisabler sld(doc);
|
|
|
|
|
|
|
|
// Batch possible DOMSubtreeModified events.
|
|
|
|
mozAutoSubtreeModified subtree(doc, nullptr);
|
|
|
|
|
|
|
|
// Parse directly into destination if possible
|
|
|
|
if (doc->IsHTML() && !OwnerDoc()->MayHaveDOMMutationObservers() &&
|
|
|
|
(position == eBeforeEnd ||
|
|
|
|
(position == eAfterEnd && !GetNextSibling()) ||
|
|
|
|
(position == eAfterBegin && !GetFirstChild()))) {
|
|
|
|
int32_t oldChildCount = destination->GetChildCount();
|
|
|
|
int32_t contextNs = destination->GetNameSpaceID();
|
|
|
|
nsIAtom* contextLocal = destination->Tag();
|
|
|
|
if (contextLocal == nsGkAtoms::html && contextNs == kNameSpaceID_XHTML) {
|
|
|
|
// For compat with IE6 through IE9. Willful violation of HTML5 as of
|
|
|
|
// 2011-04-06. CreateContextualFragment does the same already.
|
|
|
|
// Spec bug: http://www.w3.org/Bugs/Public/show_bug.cgi?id=12434
|
|
|
|
contextLocal = nsGkAtoms::body;
|
|
|
|
}
|
|
|
|
aError = nsContentUtils::ParseFragmentHTML(aText,
|
|
|
|
destination,
|
|
|
|
contextLocal,
|
|
|
|
contextNs,
|
|
|
|
doc->GetCompatibilityMode() ==
|
|
|
|
eCompatibility_NavQuirks,
|
|
|
|
true);
|
|
|
|
// HTML5 parser has notified, but not fired mutation events.
|
|
|
|
FireMutationEventsForDirectParsing(doc, destination, oldChildCount);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// couldn't parse directly
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> df;
|
|
|
|
aError = nsContentUtils::CreateContextualFragment(destination,
|
|
|
|
aText,
|
|
|
|
true,
|
|
|
|
getter_AddRefs(df));
|
|
|
|
if (aError.Failed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> fragment = do_QueryInterface(df);
|
|
|
|
|
|
|
|
// Suppress assertion about node removal mutation events that can't have
|
|
|
|
// listeners anyway, because no one has had the chance to register mutation
|
|
|
|
// listeners on the fragment that comes from the parser.
|
|
|
|
nsAutoScriptBlockerSuppressNodeRemoved scriptBlocker;
|
|
|
|
|
|
|
|
nsAutoMutationBatch mb(destination, true, false);
|
|
|
|
switch (position) {
|
|
|
|
case eBeforeBegin:
|
|
|
|
destination->InsertBefore(*fragment, this, aError);
|
|
|
|
break;
|
|
|
|
case eAfterBegin:
|
|
|
|
static_cast<nsINode*>(this)->InsertBefore(*fragment, GetFirstChild(),
|
|
|
|
aError);
|
|
|
|
break;
|
|
|
|
case eBeforeEnd:
|
|
|
|
static_cast<nsINode*>(this)->AppendChild(*fragment, aError);
|
|
|
|
break;
|
|
|
|
case eAfterEnd:
|
|
|
|
destination->InsertBefore(*fragment, GetNextSibling(), aError);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIEditor*
|
|
|
|
Element::GetEditorInternal()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsITextControlElement> textCtrl = do_QueryInterface(this);
|
|
|
|
return textCtrl ? textCtrl->GetTextEditor() : nullptr;
|
|
|
|
}
|
2013-01-08 15:25:48 -08:00
|
|
|
|
|
|
|
nsresult
|
|
|
|
Element::SetBoolAttr(nsIAtom* aAttr, bool aValue)
|
|
|
|
{
|
|
|
|
if (aValue) {
|
|
|
|
return SetAttr(kNameSpaceID_None, aAttr, EmptyString(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return UnsetAttr(kNameSpaceID_None, aAttr, true);
|
|
|
|
}
|