| Index: third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
 | 
| index 91f09635135729699f59054f7678afb05ff79618..c282b8fb4612733259d081487f81ddc8c728a075 100644
 | 
| --- a/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
 | 
| +++ b/third_party/WebKit/Source/core/editing/EditingUtilitiesTest.cpp
 | 
| @@ -107,7 +107,7 @@ TEST_F(EditingUtilitiesTest, isEditablePositionWithTable) {
 | 
|    // However, |setBodyContent()| automatically creates HTML, HEAD and BODY
 | 
|    // element. So, we build DOM tree manually.
 | 
|    // Note: This is unusual HTML taken from http://crbug.com/574230
 | 
| -  Element* table = document().createElement("table", ASSERT_NO_EXCEPTION);
 | 
| +  Element* table = document().createElement("table");
 | 
|    table->setInnerHTML("<caption>foo</caption>", ASSERT_NO_EXCEPTION);
 | 
|    while (document().firstChild())
 | 
|      document().firstChild()->remove();
 | 
| 
 |