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 28 matching lines...) Expand all Loading... |
39 | 39 |
40 size_t totalRows() const { return std::max<size_t>(1, m_rowLengths.size());
} | 40 size_t totalRows() const { return std::max<size_t>(1, m_rowLengths.size());
} |
41 size_t totalCols() const { return std::max<size_t>(1, m_colLengths.size());
} | 41 size_t totalCols() const { return std::max<size_t>(1, m_colLengths.size());
} |
42 int border() const { return hasFrameBorder() ? m_border : 0; } | 42 int border() const { return hasFrameBorder() ? m_border : 0; } |
43 | 43 |
44 bool hasBorderColor() const { return m_borderColorSet; } | 44 bool hasBorderColor() const { return m_borderColorSet; } |
45 | 45 |
46 const Vector<HTMLDimension>& rowLengths() const { return m_rowLengths; } | 46 const Vector<HTMLDimension>& rowLengths() const { return m_rowLengths; } |
47 const Vector<HTMLDimension>& colLengths() const { return m_colLengths; } | 47 const Vector<HTMLDimension>& colLengths() const { return m_colLengths; } |
48 | 48 |
49 DOMWindow* anonymousNamedGetter(const AtomicString&); | 49 LocalDOMWindow* anonymousNamedGetter(const AtomicString&); |
50 | 50 |
51 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur); | 51 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(blur); |
52 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error); | 52 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(error); |
53 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus); | 53 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(focus); |
54 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load); | 54 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(load); |
55 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); | 55 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(resize); |
56 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); | 56 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(scroll); |
57 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); | 57 DEFINE_WINDOW_ATTRIBUTE_EVENT_LISTENER(orientationchange); |
58 | 58 |
59 private: | 59 private: |
(...skipping 21 matching lines...) Expand all Loading... |
81 bool m_borderColorSet; | 81 bool m_borderColorSet; |
82 | 82 |
83 bool m_frameborder; | 83 bool m_frameborder; |
84 bool m_frameborderSet; | 84 bool m_frameborderSet; |
85 bool m_noresize; | 85 bool m_noresize; |
86 }; | 86 }; |
87 | 87 |
88 } // namespace WebCore | 88 } // namespace WebCore |
89 | 89 |
90 #endif // HTMLFrameSetElement_h | 90 #endif // HTMLFrameSetElement_h |
OLD | NEW |