| Index: third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
|
| index c893cd4adb85b0df5c8508b067ae2c74c5f5ed85..2912efe39f4d293d3e2ff693f9062cd989a031e1 100644
|
| --- a/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CompositorAnimationsTest.cpp
|
| @@ -106,7 +106,7 @@ class AnimationCompositorAnimationsTest : public ::testing::Test {
|
|
|
| m_timeline = AnimationTimeline::create(m_document.get());
|
| m_timeline->resetForTesting();
|
| - m_element = m_document->createElement("test", ASSERT_NO_EXCEPTION);
|
| + m_element = m_document->createElement("test");
|
| }
|
|
|
| public:
|
| @@ -1191,8 +1191,7 @@ TEST_F(AnimationCompositorAnimationsTest,
|
|
|
| TEST_F(AnimationCompositorAnimationsTest,
|
| cancelIncompatibleCompositorAnimations) {
|
| - Persistent<Element> element =
|
| - m_document->createElement("shared", ASSERT_NO_EXCEPTION);
|
| + Persistent<Element> element = m_document->createElement("shared");
|
|
|
| LayoutObjectProxy* layoutObject = LayoutObjectProxy::create(element.get());
|
| element->setLayoutObject(layoutObject);
|
|
|