2001-09-25 05:32:19 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +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/. */
|
2006-03-25 08:47:31 +03:00
|
|
|
|
|
|
|
/* atom list for CSS anonymous boxes */
|
|
|
|
|
2011-10-11 09:50:08 +04:00
|
|
|
#include "mozilla/Util.h"
|
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
#include "nsCSSAnonBoxes.h"
|
2003-02-22 18:58:07 +03:00
|
|
|
#include "nsAtomListUtils.h"
|
2003-04-02 08:51:07 +04:00
|
|
|
#include "nsStaticAtom.h"
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2011-10-11 09:50:08 +04:00
|
|
|
using namespace mozilla;
|
|
|
|
|
1999-07-18 04:24:47 +04:00
|
|
|
// define storage for all atoms
|
2002-11-17 18:37:56 +03:00
|
|
|
#define CSS_ANON_BOX(_name, _value) \
|
|
|
|
nsICSSAnonBoxPseudo* nsCSSAnonBoxes::_name;
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_ANON_BOX
|
1998-12-11 05:51:05 +03:00
|
|
|
|
2010-03-08 18:44:59 +03:00
|
|
|
#define CSS_ANON_BOX(name_, value_) \
|
|
|
|
NS_STATIC_ATOM_BUFFER(name_##_buffer, value_)
|
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_ANON_BOX
|
|
|
|
|
2003-04-02 08:51:07 +04:00
|
|
|
static const nsStaticAtom CSSAnonBoxes_info[] = {
|
2003-02-22 18:58:07 +03:00
|
|
|
#define CSS_ANON_BOX(name_, value_) \
|
2010-03-08 18:44:59 +03:00
|
|
|
NS_STATIC_ATOM(name_##_buffer, (nsIAtom**)&nsCSSAnonBoxes::name_),
|
2003-02-22 18:58:07 +03:00
|
|
|
#include "nsCSSAnonBoxList.h"
|
|
|
|
#undef CSS_ANON_BOX
|
|
|
|
};
|
|
|
|
|
2002-11-17 18:37:56 +03:00
|
|
|
void nsCSSAnonBoxes::AddRefAtoms()
|
1998-12-11 05:51:05 +03:00
|
|
|
{
|
2012-03-09 06:22:57 +04:00
|
|
|
NS_RegisterStaticAtoms(CSSAnonBoxes_info);
|
1998-12-11 05:51:05 +03:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool nsCSSAnonBoxes::IsAnonBox(nsIAtom *aAtom)
|
2002-11-17 18:37:56 +03:00
|
|
|
{
|
2003-02-22 18:58:07 +03:00
|
|
|
return nsAtomListUtils::IsMember(aAtom, CSSAnonBoxes_info,
|
2011-10-11 09:50:08 +04:00
|
|
|
ArrayLength(CSSAnonBoxes_info));
|
2002-11-17 18:37:56 +03:00
|
|
|
}
|
|
|
|
|
2009-10-08 07:22:42 +04:00
|
|
|
#ifdef MOZ_XUL
|
2011-09-29 10:19:26 +04:00
|
|
|
/* static */ bool
|
2009-10-08 07:22:42 +04:00
|
|
|
nsCSSAnonBoxes::IsTreePseudoElement(nsIAtom* aPseudo)
|
|
|
|
{
|
2010-03-08 18:45:00 +03:00
|
|
|
return StringBeginsWith(nsDependentAtomString(aPseudo),
|
|
|
|
NS_LITERAL_STRING(":-moz-tree-"));
|
2009-10-08 07:22:42 +04:00
|
|
|
}
|
|
|
|
#endif
|