From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- layout/style/PseudoStyleType.h | 113 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 layout/style/PseudoStyleType.h (limited to 'layout/style/PseudoStyleType.h') diff --git a/layout/style/PseudoStyleType.h b/layout/style/PseudoStyleType.h new file mode 100644 index 0000000000..6804b500c3 --- /dev/null +++ b/layout/style/PseudoStyleType.h @@ -0,0 +1,113 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* 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/. */ + +#ifndef mozilla_PseudoStyleType_h +#define mozilla_PseudoStyleType_h + +#include +#include + +namespace mozilla { + +// The kind of pseudo-style that we have. This can be: +// +// * CSS pseudo-elements (see nsCSSPseudoElements.h). +// * Anonymous boxes (see nsCSSAnonBoxes.h). +// * XUL tree pseudo-element stuff. +// +// This roughly corresponds to the `PseudoElement` enum in Rust code. +enum class PseudoStyleType : uint8_t { +// If CSS pseudo-elements stop being first here, change GetPseudoType. +#define CSS_PSEUDO_ELEMENT(_name, _value, _flags) _name, +#include "nsCSSPseudoElementList.h" +#undef CSS_PSEUDO_ELEMENT + CSSPseudoElementsEnd, + AnonBoxesStart = CSSPseudoElementsEnd, + InheritingAnonBoxesStart = CSSPseudoElementsEnd, + + // Dummy variant so the next variant also has the same discriminant as + // AnonBoxesStart. + __reset_1 = AnonBoxesStart - 1, + +#define CSS_ANON_BOX(_name, _str) _name, +#define CSS_NON_INHERITING_ANON_BOX(_name, _str) +#define CSS_WRAPPER_ANON_BOX(_name, _str) +#include "nsCSSAnonBoxList.h" +#undef CSS_ANON_BOX +#undef CSS_WRAPPER_ANON_BOX +#undef CSS_NON_INHERITING_ANON_BOX + + // Wrapper anon boxes are inheriting anon boxes. + WrapperAnonBoxesStart, + + // Dummy variant so the next variant also has the same discriminant as + // WrapperAnonBoxesStart. + __reset_2 = WrapperAnonBoxesStart - 1, + +#define CSS_ANON_BOX(_name, _str) +#define CSS_NON_INHERITING_ANON_BOX(_name, _str) +#define CSS_WRAPPER_ANON_BOX(_name, _str) _name, +#include "nsCSSAnonBoxList.h" +#undef CSS_ANON_BOX +#undef CSS_WRAPPER_ANON_BOX +#undef CSS_NON_INHERITING_ANON_BOX + + WrapperAnonBoxesEnd, + InheritingAnonBoxesEnd = WrapperAnonBoxesEnd, + NonInheritingAnonBoxesStart = WrapperAnonBoxesEnd, + + __reset_3 = NonInheritingAnonBoxesStart - 1, + +#define CSS_ANON_BOX(_name, _str) +#define CSS_NON_INHERITING_ANON_BOX(_name, _str) _name, +#include "nsCSSAnonBoxList.h" +#undef CSS_ANON_BOX +#undef CSS_NON_INHERITING_ANON_BOX + + NonInheritingAnonBoxesEnd, + AnonBoxesEnd = NonInheritingAnonBoxesEnd, + + XULTree = AnonBoxesEnd, + NotPseudo, + MAX +}; + +std::ostream& operator<<(std::ostream&, PseudoStyleType); + +class PseudoStyle final { + public: + using Type = PseudoStyleType; + + // This must match EAGER_PSEUDO_COUNT in Rust code. + static const size_t kEagerPseudoCount = 4; + + static bool IsPseudoElement(Type aType) { + return aType < Type::CSSPseudoElementsEnd; + } + + static bool IsAnonBox(Type aType) { + return aType >= Type::AnonBoxesStart && aType < Type::AnonBoxesEnd; + } + + static bool IsInheritingAnonBox(Type aType) { + return aType >= Type::InheritingAnonBoxesStart && + aType < Type::InheritingAnonBoxesEnd; + } + + static bool IsNonInheritingAnonBox(Type aType) { + return aType >= Type::NonInheritingAnonBoxesStart && + aType < Type::NonInheritingAnonBoxesEnd; + } + + static bool IsWrapperAnonBox(Type aType) { + return aType >= Type::WrapperAnonBoxesStart && + aType < Type::WrapperAnonBoxesEnd; + } +}; + +} // namespace mozilla + +#endif -- cgit v1.2.3