| 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 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2006, 2009, 2010 Apple Inc. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #include "Attribute.h" | 27 #include "Attribute.h" |
| 28 #include "CSSPropertyNames.h" | 28 #include "CSSPropertyNames.h" |
| 29 #include "Document.h" | 29 #include "Document.h" |
| 30 #include "Event.h" | 30 #include "Event.h" |
| 31 #include "EventNames.h" | 31 #include "EventNames.h" |
| 32 #include "Frame.h" | 32 #include "Frame.h" |
| 33 #include "FrameLoader.h" | 33 #include "FrameLoader.h" |
| 34 #include "FrameLoaderClient.h" | 34 #include "FrameLoaderClient.h" |
| 35 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
| 36 #include "Length.h" | |
| 37 #include "MouseEvent.h" | 36 #include "MouseEvent.h" |
| 38 #include "NodeRenderingContext.h" | 37 #include "NodeRenderingContext.h" |
| 39 #include "RenderFrameSet.h" | 38 #include "RenderFrameSet.h" |
| 40 #include "ScriptEventListener.h" | 39 #include "ScriptEventListener.h" |
| 41 #include "Text.h" | 40 #include "Text.h" |
| 41 #include "core/platform/Length.h" |
| 42 | 42 |
| 43 namespace WebCore { | 43 namespace WebCore { |
| 44 | 44 |
| 45 using namespace HTMLNames; | 45 using namespace HTMLNames; |
| 46 | 46 |
| 47 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document*
document) | 47 HTMLFrameSetElement::HTMLFrameSetElement(const QualifiedName& tagName, Document*
document) |
| 48 : HTMLElement(tagName, document) | 48 : HTMLElement(tagName, document) |
| 49 , m_totalRows(1) | 49 , m_totalRows(1) |
| 50 , m_totalCols(1) | 50 , m_totalCols(1) |
| 51 , m_border(6) | 51 , m_border(6) |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 bool HTMLFrameSetElement::willRecalcStyle(StyleChange) | 203 bool HTMLFrameSetElement::willRecalcStyle(StyleChange) |
| 204 { | 204 { |
| 205 if (needsStyleRecalc() && renderer()) { | 205 if (needsStyleRecalc() && renderer()) { |
| 206 renderer()->setNeedsLayout(true); | 206 renderer()->setNeedsLayout(true); |
| 207 clearNeedsStyleRecalc(); | 207 clearNeedsStyleRecalc(); |
| 208 } | 208 } |
| 209 return true; | 209 return true; |
| 210 } | 210 } |
| 211 | 211 |
| 212 } // namespace WebCore | 212 } // namespace WebCore |
| OLD | NEW |