Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp
index 9cf7855e4ac67a9bd6a54d50e1cf68221699848b..d111d96ea7f265a0dbb5a08d70d44b50385e45ea 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/CustomElementDefinitionTest.cpp
@@ -34,8 +34,9 @@ TEST(CustomElementDefinitionTest, upgrade_clearsReactionQueueOnFailure) {
{
CEReactionsScope reactions;
reactions.enqueueToCurrentQueue(
- element, new TestReaction({new Unreached(
- "upgrade failure should clear the reaction queue")}));
+ element,
+ new TestReaction({new Unreached(
+ "upgrade failure should clear the reaction queue")}));
ConstructorFails definition(CustomElementDescriptor("a-a", "a-a"));
definition.upgrade(element);
}
@@ -50,8 +51,9 @@ TEST(CustomElementDefinitionTest,
<< "sanity check: this element should be ready to upgrade";
ResetCustomElementReactionStackForTest resetReactionStack;
resetReactionStack.stack().enqueueToBackupQueue(
- element, new TestReaction({new Unreached(
- "upgrade failure should clear the reaction queue")}));
+ element,
+ new TestReaction(
+ {new Unreached("upgrade failure should clear the reaction queue")}));
ConstructorFails definition(CustomElementDescriptor("a-a", "a-a"));
definition.upgrade(element);
EXPECT_EQ(CustomElementState::Failed, element->getCustomElementState())

Powered by Google App Engine
This is Rietveld 408576698