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

Unified Diff: third_party/WebKit/Source/core/html/HTMLIFrameElementAllowTest.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/html/HTMLIFrameElementAllowTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLIFrameElementAllowTest.cpp b/third_party/WebKit/Source/core/html/HTMLIFrameElementAllowTest.cpp
index 42966c97a980ae08560b17caf067d85ebd7916f8..c697f2e822cbdaa75f2dc952e9e275e4885ced41 100644
--- a/third_party/WebKit/Source/core/html/HTMLIFrameElementAllowTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLIFrameElementAllowTest.cpp
@@ -31,9 +31,10 @@ TEST(HTMLIFrameElementAllowTest, ParseAllowedFeatureNamesValid) {
allow->setValue("fullscreen payment vibrate");
result = allow->parseAllowedFeatureNames(errorMessage);
- EXPECT_THAT(result, UnorderedElementsAre(WebFeaturePolicyFeature::Fullscreen,
- WebFeaturePolicyFeature::Payment,
- WebFeaturePolicyFeature::Vibrate));
+ EXPECT_THAT(result,
+ UnorderedElementsAre(WebFeaturePolicyFeature::Fullscreen,
+ WebFeaturePolicyFeature::Payment,
+ WebFeaturePolicyFeature::Vibrate));
}
TEST(HTMLIFrameElementAllowTest, ParseAllowedFeatureNamesInvalid) {
@@ -57,8 +58,9 @@ TEST(HTMLIFrameElementAllowTest, ParseAllowedFeatureNamesInvalid) {
allow->setValue("fullscreen invalid vibrate fullscreen");
result = allow->parseAllowedFeatureNames(errorMessage);
EXPECT_EQ("'invalid' is an invalid feature name.", errorMessage);
- EXPECT_THAT(result, UnorderedElementsAre(WebFeaturePolicyFeature::Fullscreen,
- WebFeaturePolicyFeature::Vibrate));
+ EXPECT_THAT(result,
+ UnorderedElementsAre(WebFeaturePolicyFeature::Fullscreen,
+ WebFeaturePolicyFeature::Vibrate));
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLHRElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLInputElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698