| Index: Source/core/html/HTMLProgressElement.cpp
|
| diff --git a/Source/core/html/HTMLProgressElement.cpp b/Source/core/html/HTMLProgressElement.cpp
|
| index a74f188bf7c3f76c003d637027360443dcae53eb..6c5780902d95ee357b016988a47dd4fb1c3ef156 100644
|
| --- a/Source/core/html/HTMLProgressElement.cpp
|
| +++ b/Source/core/html/HTMLProgressElement.cpp
|
| @@ -157,9 +157,9 @@ void HTMLProgressElement::didAddUserAgentShadowRoot(ShadowRoot* root)
|
| RefPtr<ProgressValueElement> value = ProgressValueElement::create(document());
|
| m_value = value.get();
|
| m_value->setWidthPercentage(HTMLProgressElement::IndeterminatePosition * 100);
|
| - bar->appendChild(m_value, ASSERT_NO_EXCEPTION_STATE);
|
| + bar->appendChild(m_value, ASSERT_NO_EXCEPTION);
|
|
|
| - inner->appendChild(bar, ASSERT_NO_EXCEPTION_STATE);
|
| + inner->appendChild(bar, ASSERT_NO_EXCEPTION);
|
| }
|
|
|
| bool HTMLProgressElement::shouldAppearIndeterminate() const
|
|
|