| Index: third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| index 4a91dc4a1b0c761a4c224d89018d1e8b88db8135..2c59b386926f8d4be9e1c4aa9733d6cffb43454e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLProgressElement.cpp
|
| @@ -67,10 +67,7 @@ LayoutProgress* HTMLProgressElement::layoutProgress() const
|
| {
|
| if (layoutObject() && layoutObject()->isProgress())
|
| return toLayoutProgress(layoutObject());
|
| -
|
| - LayoutObject* layoutObject = userAgentShadowRoot()->firstChild()->layoutObject();
|
| - ASSERT_WITH_SECURITY_IMPLICATION(!layoutObject || layoutObject->isProgress());
|
| - return toLayoutProgress(layoutObject);
|
| + return nullptr;
|
| }
|
|
|
| void HTMLProgressElement::parseAttribute(const QualifiedName& name, const AtomicString& oldValue, const AtomicString& value)
|
|
|