2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-11-25 04:26:07 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
/* 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 04:31:48 +04:00
|
|
|
|
|
|
|
class ErrorResult;
|
|
|
|
|
2012-11-25 04:26:07 +04:00
|
|
|
namespace dom {
|
|
|
|
|
2012-12-03 20:07:49 +04:00
|
|
|
class GlobalObject;
|
|
|
|
|
2012-11-25 04:26:07 +04:00
|
|
|
class CSS {
|
|
|
|
private:
|
2015-01-07 02:35:02 +03:00
|
|
|
CSS() = delete;
|
2012-11-25 04:26:07 +04:00
|
|
|
|
|
|
|
public:
|
2012-12-03 20:07:49 +04:00
|
|
|
static bool Supports(const GlobalObject& aGlobal, const nsAString& aProperty,
|
2012-11-25 04:26:07 +04:00
|
|
|
const nsAString& aValue, ErrorResult& aRv);
|
|
|
|
|
2012-12-03 20:07:49 +04:00
|
|
|
static bool Supports(const GlobalObject& aGlobal,
|
2012-11-25 04:26:07 +04:00
|
|
|
const nsAString& aDeclaration, ErrorResult& aRv);
|
2014-03-21 07:19:43 +04:00
|
|
|
|
|
|
|
static void Escape(const GlobalObject& aGlobal, const nsAString& aIdent,
|
2016-01-05 23:05:23 +03:00
|
|
|
nsAString& aReturn);
|
2012-11-25 04:26:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_CSS_h_
|