Index: Source/core/html/HTMLFrameElementBase.cpp |
diff --git a/Source/core/html/HTMLFrameElementBase.cpp b/Source/core/html/HTMLFrameElementBase.cpp |
index f128bd53d80bc76c98efee1c5f9a0f36ddf8482f..c53d22a50dfac1f582225371751363a848cf6299 100644 |
--- a/Source/core/html/HTMLFrameElementBase.cpp |
+++ b/Source/core/html/HTMLFrameElementBase.cpp |
@@ -207,22 +207,6 @@ bool HTMLFrameElementBase::isHTMLContentAttribute(const Attribute& attribute) co |
return attribute.name() == srcdocAttr || HTMLFrameOwnerElement::isHTMLContentAttribute(attribute); |
} |
-int HTMLFrameElementBase::width() |
-{ |
- document().updateLayoutIgnorePendingStylesheets(); |
- if (!renderBox()) |
- return 0; |
- return renderBox()->width(); |
-} |
- |
-int HTMLFrameElementBase::height() |
-{ |
- document().updateLayoutIgnorePendingStylesheets(); |
- if (!renderBox()) |
- return 0; |
- return renderBox()->height(); |
-} |
- |
// FIXME: Remove this code once we have input routing in the browser |
// process. See http://crbug.com/339659. |
void HTMLFrameElementBase::defaultEventHandler(Event* event) |