| 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, 2009, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2006, 2009, 2010 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error); | 55 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error); |
| 56 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus); | 56 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus); |
| 57 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load); | 57 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load); |
| 58 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); | 58 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); |
| 59 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); | 59 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); |
| 60 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); | 60 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); |
| 61 | 61 |
| 62 private: | 62 private: |
| 63 explicit HTMLFrameSetElement(Document&); | 63 explicit HTMLFrameSetElement(Document&); |
| 64 | 64 |
| 65 void parseAttribute(const QualifiedName&, | 65 void parseAttribute(const AttributeModificationParams&) override; |
| 66 const AtomicString&, | |
| 67 const AtomicString&) override; | |
| 68 bool isPresentationAttribute(const QualifiedName&) const override; | 66 bool isPresentationAttribute(const QualifiedName&) const override; |
| 69 void collectStyleForPresentationAttribute(const QualifiedName&, | 67 void collectStyleForPresentationAttribute(const QualifiedName&, |
| 70 const AtomicString&, | 68 const AtomicString&, |
| 71 MutableStylePropertySet*) override; | 69 MutableStylePropertySet*) override; |
| 72 | 70 |
| 73 void attachLayoutTree(const AttachContext& = AttachContext()) override; | 71 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
| 74 bool layoutObjectIsNeeded(const ComputedStyle&) override; | 72 bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 75 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 73 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 76 | 74 |
| 77 void defaultEventHandler(Event*) override; | 75 void defaultEventHandler(Event*) override; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 88 bool m_borderColorSet; | 86 bool m_borderColorSet; |
| 89 | 87 |
| 90 bool m_frameborder; | 88 bool m_frameborder; |
| 91 bool m_frameborderSet; | 89 bool m_frameborderSet; |
| 92 bool m_noresize; | 90 bool m_noresize; |
| 93 }; | 91 }; |
| 94 | 92 |
| 95 } // namespace blink | 93 } // namespace blink |
| 96 | 94 |
| 97 #endif // HTMLFrameSetElement_h | 95 #endif // HTMLFrameSetElement_h |
| OLD | NEW |