Index: Source/core/html/HTMLFrameElementBase.cpp |
diff --git a/Source/core/html/HTMLFrameElementBase.cpp b/Source/core/html/HTMLFrameElementBase.cpp |
index fc6bfb98c359fdc672ec04e415689bc1cca438c5..afc9ec57ecb071991be33a40b9d5ecb66dbc698e 100644 |
--- a/Source/core/html/HTMLFrameElementBase.cpp |
+++ b/Source/core/html/HTMLFrameElementBase.cpp |
@@ -76,7 +76,7 @@ void HTMLFrameElementBase::openURL(bool lockBackForwardList) |
return; |
if (m_URL.isEmpty()) |
- m_URL = blankURL().string(); |
+ m_URL = AtomicString(blankURL().string()); |
eseidel
2014/01/02 19:18:28
I guess you're adding KURL::toAtomicString() in a
Inactive
2014/01/02 19:34:07
Yes, this is on my TODO list.
|
Frame* parentFrame = document().frame(); |
if (!parentFrame) |