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