2007-03-22 10:30:00 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Joe Hewitt <hewitt@netscape.com> (original author)
|
|
|
|
* Christopher A. Aillon <christopher@aillon.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "inDOMUtils.h"
|
|
|
|
#include "inLayoutUtils.h"
|
|
|
|
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIDOMElement.h"
|
|
|
|
#include "nsIDocument.h"
|
2009-08-10 15:52:29 -07:00
|
|
|
#include "nsIPresShell.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMCharacterData.h"
|
|
|
|
#include "nsRuleNode.h"
|
|
|
|
#include "nsIStyleRule.h"
|
2011-03-10 18:48:57 -08:00
|
|
|
#include "mozilla/css/StyleRule.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsICSSStyleRuleDOMWrapper.h"
|
|
|
|
#include "nsIDOMWindowInternal.h"
|
2009-08-10 15:52:29 -07:00
|
|
|
#include "nsXBLBinding.h"
|
|
|
|
#include "nsXBLPrototypeBinding.h"
|
|
|
|
#include "nsIMutableArray.h"
|
|
|
|
#include "nsBindingManager.h"
|
|
|
|
#include "nsComputedDOMStyle.h"
|
2011-04-21 10:35:52 -07:00
|
|
|
#include "nsEventStateManager.h"
|
2011-05-05 14:12:04 -07:00
|
|
|
#include "nsIAtom.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
inDOMUtils::inDOMUtils()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inDOMUtils::~inDOMUtils()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(inDOMUtils, inIDOMUtils)
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// inIDOMUtils
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
inDOMUtils::IsIgnorableWhitespace(nsIDOMCharacterData *aDataNode,
|
|
|
|
PRBool *aReturn)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION(aReturn, "Must have an out parameter");
|
|
|
|
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aDataNode);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
*aReturn = PR_FALSE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aDataNode);
|
|
|
|
NS_ASSERTION(content, "Does not implement nsIContent!");
|
|
|
|
|
|
|
|
if (!content->TextIsOnlyWhitespace()) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Okay. We have only white space. Let's check the white-space
|
|
|
|
// property now and make sure that this isn't preformatted text...
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindowInternal> win = inLayoutUtils::GetWindowFor(aDataNode);
|
|
|
|
if (!win) {
|
|
|
|
// Hmm. Things are screwy if we have no window...
|
|
|
|
NS_ERROR("No window!");
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-12-24 13:20:06 -08:00
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (frame) {
|
|
|
|
const nsStyleText* text = frame->GetStyleText();
|
2008-02-19 18:07:48 -08:00
|
|
|
*aReturn = !text->WhiteSpaceIsSignificant();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// empty inter-tag text node without frame, e.g., in between <table>\n<tr>
|
|
|
|
*aReturn = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
inDOMUtils::GetParentForNode(nsIDOMNode* aNode,
|
|
|
|
PRBool aShowingAnonymousContent,
|
|
|
|
nsIDOMNode** aParent)
|
|
|
|
{
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aNode);
|
|
|
|
|
|
|
|
// First do the special cases -- document nodes and anonymous content
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDOMDocument> doc(do_QueryInterface(aNode));
|
|
|
|
nsCOMPtr<nsIDOMNode> parent;
|
|
|
|
|
|
|
|
if (doc) {
|
|
|
|
parent = inLayoutUtils::GetContainerFor(doc);
|
|
|
|
} else if (aShowingAnonymousContent) {
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aNode);
|
|
|
|
if (content) {
|
|
|
|
nsIContent* bparent = nsnull;
|
|
|
|
nsRefPtr<nsBindingManager> bindingManager = inLayoutUtils::GetBindingManagerFor(aNode);
|
|
|
|
if (bindingManager) {
|
|
|
|
bparent = bindingManager->GetInsertionParent(content);
|
|
|
|
}
|
|
|
|
|
|
|
|
parent = do_QueryInterface(bparent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!parent) {
|
|
|
|
// Ok, just get the normal DOM parent node
|
|
|
|
aNode->GetParentNode(getter_AddRefs(parent));
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IF_ADDREF(*aParent = parent);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
inDOMUtils::GetCSSStyleRules(nsIDOMElement *aElement,
|
2011-05-05 14:12:04 -07:00
|
|
|
const nsAString& aPseudo,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsISupportsArray **_retval)
|
|
|
|
{
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
*_retval = nsnull;
|
|
|
|
|
2011-05-05 14:12:04 -07:00
|
|
|
nsCOMPtr<nsIAtom> pseudoElt;
|
|
|
|
if (!aPseudo.IsEmpty()) {
|
|
|
|
pseudoElt = do_GetAtom(aPseudo);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRuleNode* ruleNode = nsnull;
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement);
|
2009-11-24 21:35:55 -08:00
|
|
|
nsRefPtr<nsStyleContext> styleContext;
|
2011-05-05 14:12:04 -07:00
|
|
|
GetRuleNodeForContent(content, pseudoElt, getter_AddRefs(styleContext), &ruleNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!ruleNode) {
|
|
|
|
// This can fail for content nodes that are not in the document or
|
|
|
|
// if the document they're in doesn't have a presshell. Bail out.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsArray> rules;
|
|
|
|
NS_NewISupportsArray(getter_AddRefs(rules));
|
|
|
|
if (!rules) return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2011-03-10 18:48:57 -08:00
|
|
|
nsRefPtr<mozilla::css::StyleRule> cssRule;
|
2009-08-10 15:52:29 -07:00
|
|
|
for ( ; !ruleNode->IsRoot(); ruleNode = ruleNode->GetParent()) {
|
2011-03-10 18:48:57 -08:00
|
|
|
cssRule = do_QueryObject(ruleNode->GetRule());
|
2007-03-22 10:30:00 -07:00
|
|
|
if (cssRule) {
|
2011-04-07 23:36:09 -07:00
|
|
|
nsCOMPtr<nsIDOMCSSRule> domRule = cssRule->GetDOMRule();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (domRule)
|
|
|
|
rules->InsertElementAt(domRule, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*_retval = rules;
|
|
|
|
NS_ADDREF(*_retval);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
inDOMUtils::GetRuleLine(nsIDOMCSSStyleRule *aRule, PRUint32 *_retval)
|
|
|
|
{
|
|
|
|
*_retval = 0;
|
2008-12-16 03:26:42 -08:00
|
|
|
|
|
|
|
NS_ENSURE_ARG_POINTER(aRule);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsICSSStyleRuleDOMWrapper> rule = do_QueryInterface(aRule);
|
2011-03-10 18:48:57 -08:00
|
|
|
nsRefPtr<mozilla::css::StyleRule> cssrule;
|
2008-12-16 03:26:42 -08:00
|
|
|
nsresult rv = rule->GetCSSStyleRule(getter_AddRefs(cssrule));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ENSURE_TRUE(cssrule != nsnull, NS_ERROR_FAILURE);
|
|
|
|
*_retval = cssrule->GetLineNumber();
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
inDOMUtils::GetBindingURLs(nsIDOMElement *aElement, nsIArray **_retval)
|
|
|
|
{
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
2009-08-10 15:52:29 -07:00
|
|
|
|
|
|
|
*_retval = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIMutableArray> urls = do_CreateInstance(NS_ARRAY_CONTRACTID);
|
|
|
|
if (!urls)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aElement);
|
|
|
|
NS_ASSERTION(content, "elements must implement nsIContent");
|
|
|
|
|
|
|
|
nsIDocument *ownerDoc = content->GetOwnerDoc();
|
|
|
|
if (ownerDoc) {
|
|
|
|
nsXBLBinding *binding = ownerDoc->BindingManager()->GetBinding(content);
|
|
|
|
|
|
|
|
while (binding) {
|
|
|
|
urls->AppendElement(binding->PrototypeBinding()->BindingURI(), PR_FALSE);
|
|
|
|
binding = binding->GetBaseBinding();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*_retval = urls);
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-10-20 04:26:32 -07:00
|
|
|
inDOMUtils::SetContentState(nsIDOMElement *aElement, nsEventStates::InternalType aState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-21 10:35:52 -07:00
|
|
|
nsRefPtr<nsEventStateManager> esm = inLayoutUtils::GetEventStateManagerFor(aElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (esm) {
|
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
content = do_QueryInterface(aElement);
|
|
|
|
|
2010-10-20 04:26:32 -07:00
|
|
|
return esm->SetContentState(content, nsEventStates(aState));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2010-10-20 04:26:32 -07:00
|
|
|
inDOMUtils::GetContentState(nsIDOMElement *aElement, nsEventStates::InternalType* aState)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aState = 0;
|
|
|
|
|
2008-12-16 03:26:42 -08:00
|
|
|
NS_ENSURE_ARG_POINTER(aElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-04-21 10:35:52 -07:00
|
|
|
nsRefPtr<nsEventStateManager> esm = inLayoutUtils::GetEventStateManagerFor(aElement);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (esm) {
|
|
|
|
nsCOMPtr<nsIContent> content;
|
|
|
|
content = do_QueryInterface(aElement);
|
2010-10-20 04:26:32 -07:00
|
|
|
// NOTE: if this method is removed,
|
|
|
|
// please remove GetInternalValue from nsEventStates
|
|
|
|
*aState = esm->GetContentState(content).GetInternalValue();
|
2010-05-31 10:49:04 -07:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2009-08-10 15:52:29 -07:00
|
|
|
/* static */ nsresult
|
2009-11-24 21:35:55 -08:00
|
|
|
inDOMUtils::GetRuleNodeForContent(nsIContent* aContent,
|
2011-05-05 14:12:04 -07:00
|
|
|
nsIAtom* aPseudo,
|
2009-11-24 21:35:55 -08:00
|
|
|
nsStyleContext** aStyleContext,
|
|
|
|
nsRuleNode** aRuleNode)
|
2009-08-10 15:52:29 -07:00
|
|
|
{
|
|
|
|
*aRuleNode = nsnull;
|
2009-11-24 21:35:55 -08:00
|
|
|
*aStyleContext = nsnull;
|
2009-08-10 15:52:29 -07:00
|
|
|
|
2010-04-30 06:12:06 -07:00
|
|
|
if (!aContent->IsElement()) {
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
2009-08-10 15:52:29 -07:00
|
|
|
nsIDocument* doc = aContent->GetDocument();
|
|
|
|
NS_ENSURE_TRUE(doc, NS_ERROR_UNEXPECTED);
|
|
|
|
|
2010-06-25 06:59:57 -07:00
|
|
|
nsIPresShell *presShell = doc->GetShell();
|
2009-08-10 15:52:29 -07:00
|
|
|
NS_ENSURE_TRUE(presShell, NS_ERROR_UNEXPECTED);
|
|
|
|
|
2009-12-31 07:56:33 -08:00
|
|
|
nsPresContext *presContext = presShell->GetPresContext();
|
|
|
|
NS_ENSURE_TRUE(presContext, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
PRBool safe = presContext->EnsureSafeToHandOutCSSRules();
|
|
|
|
NS_ENSURE_TRUE(safe, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
2009-08-10 15:52:29 -07:00
|
|
|
nsRefPtr<nsStyleContext> sContext =
|
2011-05-05 14:12:04 -07:00
|
|
|
nsComputedDOMStyle::GetStyleContextForElement(aContent->AsElement(), aPseudo, presShell);
|
|
|
|
if (sContext) {
|
|
|
|
*aRuleNode = sContext->GetRuleNode();
|
|
|
|
sContext.forget(aStyleContext);
|
|
|
|
}
|
2009-08-10 15:52:29 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|