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