| Index: Source/core/dom/Document.cpp
|
| diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp
|
| index c62b209f9424bbd415642edbf2ffb1b25b8f9fd3..3ae2d22379e50f1f998332636e49f098f5520ada 100644
|
| --- a/Source/core/dom/Document.cpp
|
| +++ b/Source/core/dom/Document.cpp
|
| @@ -1315,7 +1315,7 @@ void Document::setTitle(const String& title)
|
| else if (!m_titleElement) {
|
| if (HTMLElement* headElement = head()) {
|
| m_titleElement = createElement(titleTag, false);
|
| - headElement->appendChild(m_titleElement, ASSERT_NO_EXCEPTION_STATE, AttachLazily);
|
| + headElement->appendChild(m_titleElement, ASSERT_NO_EXCEPTION, AttachLazily);
|
| }
|
| }
|
|
|
| @@ -2724,7 +2724,7 @@ void Document::processHttpEquivSetCookie(const String& content)
|
| return;
|
|
|
| // Exception (for sandboxed documents) ignored.
|
| - toHTMLDocument(this)->setCookie(content, IGNORE_EXCEPTION_STATE);
|
| + toHTMLDocument(this)->setCookie(content, IGNORE_EXCEPTION);
|
| }
|
|
|
| void Document::processHttpEquivXFrameOptions(const String& content)
|
|
|