| Index: Source/core/html/shadow/DateTimeEditElement.cpp | 
| diff --git a/Source/core/html/shadow/DateTimeEditElement.cpp b/Source/core/html/shadow/DateTimeEditElement.cpp | 
| index febdacc7b88e0eb55fe8bd49908506962da4cf44..0bc43696e7ddd96bf7dc39e07279b95fc4d9627a 100644 | 
| --- a/Source/core/html/shadow/DateTimeEditElement.cpp | 
| +++ b/Source/core/html/shadow/DateTimeEditElement.cpp | 
| @@ -410,7 +410,7 @@ void DateTimeEditBuilder::visitLiteral(const String& text) | 
| element->appendChild(Text::create(m_editElement.document(), String(&rightToLeftMark, 1))); | 
| } | 
| element->appendChild(Text::create(m_editElement.document(), text)); | 
| -    m_editElement.fieldsWrapperElement()->appendChild(element, ASSERT_NO_EXCEPTION_STATE, AttachLazily); | 
| +    m_editElement.fieldsWrapperElement()->appendChild(element, ASSERT_NO_EXCEPTION, AttachLazily); | 
| } | 
|  | 
| DateTimeNumericFieldElement::Step DateTimeEditBuilder::createStep(double msPerFieldUnit, double msPerFieldSize) const | 
| @@ -464,7 +464,7 @@ void DateTimeEditElement::addField(PassRefPtr<DateTimeFieldElement> field) | 
| if (m_fields.size() == m_fields.capacity()) | 
| return; | 
| m_fields.append(field.get()); | 
| -    fieldsWrapperElement()->appendChild(field, ASSERT_NO_EXCEPTION_STATE, AttachLazily); | 
| +    fieldsWrapperElement()->appendChild(field, ASSERT_NO_EXCEPTION, AttachLazily); | 
| } | 
|  | 
| bool DateTimeEditElement::anyEditableFieldsHaveValues() const | 
| @@ -653,7 +653,7 @@ void DateTimeEditElement::layout(const LayoutParameters& layoutParameters, const | 
| if (!firstChild()) { | 
| RefPtr<HTMLDivElement> element = HTMLDivElement::create(document()); | 
| element->setPseudo(fieldsWrapperPseudoId); | 
| -        appendChild(element.get(), ASSERT_NO_EXCEPTION_STATE, AttachLazily); | 
| +        appendChild(element.get(), ASSERT_NO_EXCEPTION, AttachLazily); | 
| } | 
| Element* fieldsWrapper = fieldsWrapperElement(); | 
|  | 
|  |