Index: third_party/WebKit/Source/core/dom/custom/CustomElementReactionStackTest.cpp |
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStackTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStackTest.cpp |
index e16a27975f28338ef1f5742950a516f4434d620b..67609d680d4e4384ff58cc54e78d58c7cc8385b4 100644 |
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStackTest.cpp |
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementReactionStackTest.cpp |
@@ -146,8 +146,9 @@ TEST(CustomElementReactionStackTest, enqueueFromReaction) { |
CustomElementReactionStack* stack = new CustomElementReactionStack(); |
stack->push(); |
stack->enqueueToCurrentQueue( |
- element, new TestReaction({new EnqueueToStack( |
- stack, element, new TestReaction({new Log('a', log)}))})); |
+ element, |
+ new TestReaction({new EnqueueToStack( |
+ stack, element, new TestReaction({new Log('a', log)}))})); |
stack->popInvokingReactions(); |
EXPECT_EQ(log, std::vector<char>({'a'})) << "enqueued reaction from another " |