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 */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_CSS_h_
|
|
|
|
#define mozilla_dom_CSS_h_
|
|
|
|
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2013-03-03 00:31:48 +00:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2012-11-25 00:26:07 +00:00
|
|
|
namespace dom {
|
|
|
|
|
2012-12-03 16:07:49 +00:00
|
|
|
class GlobalObject;
|
|
|
|
|
2012-11-25 00:26:07 +00:00
|
|
|
class CSS {
|
|
|
|
private:
|
|
|
|
CSS() MOZ_DELETE;
|
|
|
|
|
|
|
|
public:
|
2012-12-03 16:07:49 +00:00
|
|
|
static bool Supports(const GlobalObject& aGlobal,
|
2012-11-25 00:26:07 +00:00
|
|
|
const nsAString& aProperty,
|
|
|
|
const nsAString& aValue,
|
|
|
|
ErrorResult& aRv);
|
|
|
|
|
2012-12-03 16:07:49 +00:00
|
|
|
static bool Supports(const GlobalObject& aGlobal,
|
2012-11-25 00:26:07 +00:00
|
|
|
const nsAString& aDeclaration,
|
|
|
|
ErrorResult& aRv);
|
2014-03-21 03:19:43 +00:00
|
|
|
|
|
|
|
static void Escape(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aIdent,
|
|
|
|
nsAString& aReturn,
|
|
|
|
ErrorResult& aRv);
|
2012-11-25 00:26:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_CSS_h_
|