Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(935)

Unified Diff: Source/core/html/HTMLFrameElementBase.cpp

Issue 220563002: Remove HTMLFrameElement.location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix tests Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameElementBase.cpp
diff --git a/Source/core/html/HTMLFrameElementBase.cpp b/Source/core/html/HTMLFrameElementBase.cpp
index 3cfbab76a0caf2771c08212a00d51d874113873e..87abc68c5568c666593a5d08c5e14ac1973c4da4 100644
--- a/Source/core/html/HTMLFrameElementBase.cpp
+++ b/Source/core/html/HTMLFrameElementBase.cpp
@@ -166,13 +166,6 @@ void HTMLFrameElementBase::attach(const AttachContext& context)
}
}
-KURL HTMLFrameElementBase::location() const
-{
- if (fastHasAttribute(srcdocAttr))
- return KURL(ParsedURLString, "about:srcdoc");
- return document().completeURL(getAttribute(srcAttr));
-}
-
void HTMLFrameElementBase::setLocation(const String& str)
{
m_URL = AtomicString(str);
« no previous file with comments | « Source/core/html/HTMLFrameElementBase.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698