#include "third_party/blink/renderer/core/html/custom/custom_element_reaction_stack.h"
#include <initializer_list>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_reaction.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_reaction_test_helpers.h"
#include "third_party/blink/renderer/core/html/custom/custom_element_test_helpers.h"
#include "third_party/blink/renderer/core/testing/null_execution_context.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"
#include "third_party/blink/renderer/platform/wtf/text/atomic_string.h"
namespace blink {
TEST(CustomElementReactionStackTest, one) { … }
TEST(CustomElementReactionStackTest, multipleElements) { … }
TEST(CustomElementReactionStackTest, popTopEmpty) { … }
TEST(CustomElementReactionStackTest, popTop) { … }
TEST(CustomElementReactionStackTest, requeueingDoesNotReorderElements) { … }
TEST(CustomElementReactionStackTest, oneReactionQueuePerElement) { … }
class EnqueueToStack : public Command { … };
TEST(CustomElementReactionStackTest, enqueueFromReaction) { … }
}