2012-11-25 00:26:07 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
/* DOM object holding utility CSS functions */
|
|
|
|
|
|
|
|
#include "CSS.h"
|
|
|
|
|
2012-12-03 16:07:49 +00:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2012-11-25 00:26:07 +00:00
|
|
|
#include "nsCSSParser.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
struct SupportsParsingInfo
|
|
|
|
{
|
|
|
|
nsIURI* mDocURI;
|
|
|
|
nsIURI* mBaseURI;
|
|
|
|
nsIPrincipal* mPrincipal;
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
GetParsingInfo(nsISupports* aGlobal,
|
|
|
|
SupportsParsingInfo& aInfo)
|
|
|
|
{
|
2012-12-26 09:00:19 +00:00
|
|
|
if (!aGlobal) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2012-11-25 00:26:07 +00:00
|
|
|
nsGlobalWindow* win = nsGlobalWindow::FromSupports(aGlobal);
|
|
|
|
nsCOMPtr<nsIDocument> doc = win->GetDoc();
|
|
|
|
if (!doc) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
aInfo.mDocURI = nsCOMPtr<nsIURI>(doc->GetDocumentURI());
|
|
|
|
aInfo.mBaseURI = nsCOMPtr<nsIURI>(doc->GetBaseURI());
|
|
|
|
aInfo.mPrincipal = win->GetPrincipal();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
2012-12-03 16:07:49 +00:00
|
|
|
CSS::Supports(const GlobalObject& aGlobal,
|
2012-11-25 00:26:07 +00:00
|
|
|
const nsAString& aProperty,
|
|
|
|
const nsAString& aValue,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCSSParser parser;
|
|
|
|
SupportsParsingInfo info;
|
|
|
|
|
2013-08-23 05:17:08 +00:00
|
|
|
nsresult rv = GetParsingInfo(aGlobal.GetAsSupports(), info);
|
2012-11-25 00:26:07 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aRv.Throw(rv);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parser.EvaluateSupportsDeclaration(aProperty, aValue, info.mDocURI,
|
|
|
|
info.mBaseURI, info.mPrincipal);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
2012-12-03 16:07:49 +00:00
|
|
|
CSS::Supports(const GlobalObject& aGlobal,
|
2012-11-25 00:26:07 +00:00
|
|
|
const nsAString& aCondition,
|
|
|
|
ErrorResult& aRv)
|
|
|
|
{
|
|
|
|
nsCSSParser parser;
|
|
|
|
SupportsParsingInfo info;
|
|
|
|
|
2013-08-23 05:17:08 +00:00
|
|
|
nsresult rv = GetParsingInfo(aGlobal.GetAsSupports(), info);
|
2012-11-25 00:26:07 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
aRv.Throw(rv);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parser.EvaluateSupportsCondition(aCondition, info.mDocURI,
|
|
|
|
info.mBaseURI, info.mPrincipal);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // dom
|
|
|
|
} // mozilla
|