OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Simon Hausmann <hausmann@kde.org> | 4 * (C) 2000 Simon Hausmann <hausmann@kde.org> |
5 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 void attachLayoutTree(const AttachContext& = AttachContext()) override; | 47 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
48 | 48 |
49 // FIXME: Remove this method once we have input routing in the browser | 49 // FIXME: Remove this method once we have input routing in the browser |
50 // process. See http://crbug.com/339659. | 50 // process. See http://crbug.com/339659. |
51 void defaultEventHandler(Event*) override; | 51 void defaultEventHandler(Event*) override; |
52 | 52 |
53 void setScrollingMode(ScrollbarMode); | 53 void setScrollingMode(ScrollbarMode); |
54 void setMarginWidth(int); | 54 void setMarginWidth(int); |
55 void setMarginHeight(int); | 55 void setMarginHeight(int); |
56 | 56 |
| 57 void frameOwnerPropertiesChanged(); |
| 58 |
57 private: | 59 private: |
58 bool supportsFocus() const final; | 60 bool supportsFocus() const final; |
59 void setFocused(bool) final; | 61 void setFocused(bool) final; |
60 | 62 |
61 bool isURLAttribute(const Attribute&) const final; | 63 bool isURLAttribute(const Attribute&) const final; |
62 bool hasLegalLinkAttribute(const QualifiedName&) const final; | 64 bool hasLegalLinkAttribute(const QualifiedName&) const final; |
63 bool isHTMLContentAttribute(const Attribute&) const final; | 65 bool isHTMLContentAttribute(const Attribute&) const final; |
64 | 66 |
65 bool areAuthorShadowsAllowed() const final { return false; } | 67 bool areAuthorShadowsAllowed() const final { return false; } |
66 | 68 |
(...skipping 12 matching lines...) Expand all Loading... |
79 | 81 |
80 inline bool isHTMLFrameElementBase(const HTMLElement& element) { | 82 inline bool isHTMLFrameElementBase(const HTMLElement& element) { |
81 return isHTMLFrameElement(element) || isHTMLIFrameElement(element); | 83 return isHTMLFrameElement(element) || isHTMLIFrameElement(element); |
82 } | 84 } |
83 | 85 |
84 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFrameElementBase); | 86 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFrameElementBase); |
85 | 87 |
86 } // namespace blink | 88 } // namespace blink |
87 | 89 |
88 #endif // HTMLFrameElementBase_h | 90 #endif // HTMLFrameElementBase_h |
OLD | NEW |