| 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
|
|
|