1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/style/nsCSSAnonBoxes.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +/* atom list for CSS anonymous boxes */ 1.10 + 1.11 +#ifndef nsCSSAnonBoxes_h___ 1.12 +#define nsCSSAnonBoxes_h___ 1.13 + 1.14 +#include "nsIAtom.h" 1.15 + 1.16 +// Empty class derived from nsIAtom so that function signatures can 1.17 +// require an atom from this atom list. 1.18 +class nsICSSAnonBoxPseudo : public nsIAtom {}; 1.19 + 1.20 +class nsCSSAnonBoxes { 1.21 +public: 1.22 + 1.23 + static void AddRefAtoms(); 1.24 + 1.25 + static bool IsAnonBox(nsIAtom *aAtom); 1.26 +#ifdef MOZ_XUL 1.27 + static bool IsTreePseudoElement(nsIAtom* aPseudo); 1.28 +#endif 1.29 + 1.30 +#define CSS_ANON_BOX(_name, _value) static nsICSSAnonBoxPseudo* _name; 1.31 +#include "nsCSSAnonBoxList.h" 1.32 +#undef CSS_ANON_BOX 1.33 +}; 1.34 + 1.35 +#endif /* nsCSSAnonBoxes_h___ */