| 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) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 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 19 matching lines...) Expand all Loading... |
| 30 #include "core/html/HTMLFieldSetElement.h" | 30 #include "core/html/HTMLFieldSetElement.h" |
| 31 #include "core/html/HTMLFormElement.h" | 31 #include "core/html/HTMLFormElement.h" |
| 32 #include "core/html/HTMLInputElement.h" | 32 #include "core/html/HTMLInputElement.h" |
| 33 #include "core/html/HTMLLegendElement.h" | 33 #include "core/html/HTMLLegendElement.h" |
| 34 #include "core/html/HTMLTextAreaElement.h" | 34 #include "core/html/HTMLTextAreaElement.h" |
| 35 #include "core/html/ValidationMessage.h" | 35 #include "core/html/ValidationMessage.h" |
| 36 #include "core/html/ValidityState.h" | 36 #include "core/html/ValidityState.h" |
| 37 #include "core/page/UseCounter.h" | 37 #include "core/page/UseCounter.h" |
| 38 #include "core/rendering/RenderBox.h" | 38 #include "core/rendering/RenderBox.h" |
| 39 #include "core/rendering/RenderTheme.h" | 39 #include "core/rendering/RenderTheme.h" |
| 40 #include <wtf/Vector.h> | 40 #include "wtf/Vector.h" |
| 41 | 41 |
| 42 namespace WebCore { | 42 namespace WebCore { |
| 43 | 43 |
| 44 using namespace HTMLNames; | 44 using namespace HTMLNames; |
| 45 using namespace std; | 45 using namespace std; |
| 46 | 46 |
| 47 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Doc
ument* document, HTMLFormElement* form) | 47 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Doc
ument* document, HTMLFormElement* form) |
| 48 : LabelableElement(tagName, document) | 48 : LabelableElement(tagName, document) |
| 49 , m_disabled(false) | 49 , m_disabled(false) |
| 50 , m_isReadOnly(false) | 50 , m_isReadOnly(false) |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 } | 495 } |
| 496 | 496 |
| 497 void HTMLFormControlElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInf
o) const | 497 void HTMLFormControlElement::reportMemoryUsage(MemoryObjectInfo* memoryObjectInf
o) const |
| 498 { | 498 { |
| 499 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); | 499 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::DOM); |
| 500 LabelableElement::reportMemoryUsage(memoryObjectInfo); | 500 LabelableElement::reportMemoryUsage(memoryObjectInfo); |
| 501 info.addMember(m_validationMessage, "validationMessage"); | 501 info.addMember(m_validationMessage, "validationMessage"); |
| 502 } | 502 } |
| 503 | 503 |
| 504 } // namespace Webcore | 504 } // namespace Webcore |
| OLD | NEW |