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

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

Issue 1319863006: (blink) Propagate scrolling/marginwidth/marginheight property values to child frame. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: address nits Created 5 years, 3 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/HTMLBodyElement.cpp ('k') | Source/core/html/HTMLFrameElementBase.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFrameElementBase.h
diff --git a/Source/core/html/HTMLFrameElementBase.h b/Source/core/html/HTMLFrameElementBase.h
index cac0f27c2cc58ae0125b5c3ed18f129fad98c2c1..0f3e1b6d82c2222d54a02bd2840df217ce26044d 100644
--- a/Source/core/html/HTMLFrameElementBase.h
+++ b/Source/core/html/HTMLFrameElementBase.h
@@ -25,17 +25,11 @@
#define HTMLFrameElementBase_h
#include "core/html/HTMLFrameOwnerElement.h"
-#include "platform/scroll/ScrollTypes.h"
namespace blink {
class HTMLFrameElementBase : public HTMLFrameOwnerElement {
public:
- ScrollbarMode scrollingMode() const final { return m_scrolling; }
-
- int marginWidth() const { return m_marginWidth; }
- int marginHeight() const { return m_marginHeight; }
-
bool canContainRangeEndPoint() const final { return false; }
protected:
@@ -68,11 +62,6 @@ private:
AtomicString m_URL;
AtomicString m_frameName;
-
- ScrollbarMode m_scrolling;
-
- int m_marginWidth;
- int m_marginHeight;
};
inline bool isHTMLFrameElementBase(const HTMLElement& element)
« no previous file with comments | « Source/core/html/HTMLBodyElement.cpp ('k') | Source/core/html/HTMLFrameElementBase.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698