| Index: Source/web/PluginPlaceholderImplTest.cpp
|
| diff --git a/Source/web/PluginPlaceholderImplTest.cpp b/Source/web/PluginPlaceholderImplTest.cpp
|
| index 63faf957933dfa8709be713348c970185a7fe909..49d2e3a485532bc347f9ec02d5db34e889a0e881 100644
|
| --- a/Source/web/PluginPlaceholderImplTest.cpp
|
| +++ b/Source/web/PluginPlaceholderImplTest.cpp
|
| @@ -99,8 +99,8 @@ bool isHiddenWithInlineStyle(Element* element)
|
| {
|
| if (!element->inlineStyle())
|
| return false;
|
| - RefPtrWillBeRawPtr<CSSValue> value = element->inlineStyle()->getPropertyCSSValue(CSSPropertyDisplay);
|
| - return value && value->isPrimitiveValue() && toCSSPrimitiveValue(value.get())->getValueID() == CSSValueNone;
|
| + NullableCSSValue value = element->inlineStyle()->getPropertyCSSValue(CSSPropertyDisplay);
|
| + return value && value->isPrimitiveValue() && toCSSPrimitiveValue(value)->getValueID() == CSSValueNone;
|
| }
|
|
|
| TEST_F(PluginPlaceholderImplTest, Closeable)
|
|
|